Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated description in manifest #20

Merged
merged 2 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/email_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<meta name="description" content="nf-core/detaxizer: A pipeline to identify (and remove) certain sequences from raw genomic data using kraken2 and blast. Default taxon to identify (and remove) is Homo. Removal is optional.">
<meta name="description" content="nf-core/detaxizer: A pipeline to identify (and remove) certain sequences from raw genomic data. Default taxa to identify (and remove) are Homo and Homo sapiens. Removal is optional.">
<title>nf-core/detaxizer Pipeline Report</title>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ manifest {
name = 'nf-core/detaxizer'
author = """Jannik Seidel"""
homePage = 'https://github.com/nf-core/detaxizer'
description = """A pipeline to identify (and remove) certain sequences from raw genomic data using kraken2 and blast. Default taxon to identify (and remove) is Homo. Removal is optional."""
description = """A pipeline to identify (and remove) certain sequences from raw genomic data. Default taxa to identify (and remove) are Homo and Homo sapiens. Removal is optional."""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
version = '1.0dev'
Expand Down
8 changes: 4 additions & 4 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/nf-core/detaxizer/master/nextflow_schema.json",
"title": "nf-core/detaxizer pipeline parameters",
"description": "A pipeline to identify (and remove) certain sequences from raw genomic data using kraken2 and blast. Default taxon to identify (and remove) is Homo. Removal is optional.",
"description": "A pipeline to identify (and remove) certain sequences from raw genomic data. Default taxa to identify (and remove) are Homo and Homo sapiens. Removal is optional.",
"type": "object",
"definitions": {
"workflow_parameters": {
Expand Down Expand Up @@ -71,7 +71,7 @@
},
"cutoff_unclassified": {
"type": "number",
"default": 0,
"default": 0.0,
"description": "Ratio per read of assigned to tax2filter k-mers to unclassified k-mers.",
"minimum": 0,
"maximum": 1,
Expand All @@ -93,7 +93,7 @@
"properties": {
"blast_coverage": {
"type": "number",
"default": 40,
"default": 40.0,
"description": "Coverage is the percentage of the query sequence which can be found in the alignments of the sequence match. It can be used to fine-tune the validation step."
},
"blast_evalue": {
Expand All @@ -103,7 +103,7 @@
},
"blast_identity": {
"type": "number",
"default": 40,
"default": 40.0,
"description": "Identity is the percentage of the exact matches in the query and the sequence found in the database. The parameter can be used to fine-tune the validation step."
}
}
Expand Down
Loading