-
Notifications
You must be signed in to change notification settings - Fork 731
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
Add sylph/profile module #7118
Open
sofstam
wants to merge
11
commits into
nf-core:master
Choose a base branch
from
sofstam:sylph_profile
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add sylph/profile module #7118
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
daf9e8d
Add sylph/profile module and remove unnecessary pattern from sylph/sk…
sofstam dfdd3fc
Remove description
sofstam a2f1344
Update snap
sofstam 8544ee9
Try again with linting
sofstam 1e576e0
Merge branch 'master' into sylph_profile
sofstam fa0e2c1
Update snap
sofstam e45886d
Fix linting for meta.yaml
sofstam 2451fcd
Update tests
sofstam c06f4fb
Add contains in nf-test
sofstam c95a100
Add contains
sofstam 9cda43a
Merge branch 'master' into sylph_profile
mashehu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/environment-schema.json | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
dependencies: | ||
- "bioconda::sylph=0.7.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
process SYLPH_PROFILE { | ||
tag "$meta.id" | ||
label 'process_high' | ||
|
||
conda "${moduleDir}/environment.yml" | ||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? | ||
'https://depot.galaxyproject.org/singularity/sylph:0.7.0--h919a2d8_0' : | ||
'biocontainers/sylph:0.7.0--h919a2d8_0' }" | ||
|
||
input: | ||
tuple val(meta), path(reads) | ||
path(pre_sketched_files) | ||
|
||
output: | ||
tuple val(meta), path('*.tsv'), emit: profile_out | ||
path "versions.yml" , emit: versions | ||
|
||
|
||
when: | ||
task.ext.when == null || task.ext.when | ||
|
||
script: | ||
def args = task.ext.args ?: '' | ||
def prefix = task.ext.prefix ?: "${meta.id}" | ||
|
||
""" | ||
sylph profile \\ | ||
$args \\ | ||
$reads \\ | ||
$pre_sketched_files\\ | ||
-o ${prefix}.tsv | ||
|
||
cat <<-END_VERSIONS > versions.yml | ||
"${task.process}": | ||
sylph: \$(sylph -V|awk '{print \$2}') | ||
END_VERSIONS | ||
|
||
""" | ||
|
||
stub: | ||
def args = task.ext.args ?: '' | ||
def prefix = task.ext.prefix ?: "${meta.id}" | ||
""" | ||
touch ${prefix}.tsv | ||
|
||
cat <<-END_VERSIONS > versions.yml | ||
"${task.process}": | ||
sylph: \$(sylph -V|awk '{print \$2}') | ||
END_VERSIONS | ||
""" | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: "sylph_profile" | ||
description: Sylph profile command for taxonoming profiling | ||
keywords: | ||
- profile | ||
- metagenomics | ||
- sylph | ||
- classification | ||
tools: | ||
- sylph: | ||
description: Sylph quickly enables querying of genomes against even low-coverage | ||
shotgun metagenomes to find nearest neighbour ANI. | ||
homepage: https://github.com/bluenote-1577/sylph | ||
documentation: https://github.com/bluenote-1577/sylph | ||
tool_dev_url: https://github.com/bluenote-1577/sylph | ||
doi: 10.1038/s41587-024-02412-y | ||
licence: ["MIT"] | ||
identifier: biotools:sylph | ||
input: | ||
- - meta: | ||
type: map | ||
description: | | ||
Groovy Map containing sample information | ||
e.g. `[ id:'test', single_end:false ]` | ||
- reads: | ||
type: file | ||
description: | | ||
List of input FastQ/FASTA files of size 1 and 2 for single-end and paired-end data, | ||
respectively. They are automatically sketched to .sylsp/.syldb | ||
- - pre_sketched_files: | ||
type: file | ||
description: Pre-sketched *.syldb/*.sylsp files | ||
pattern: "*.{syldb,sylsp}" | ||
output: | ||
- profile_out: | ||
- meta: | ||
type: map | ||
description: | | ||
Groovy Map containing sample information | ||
e.g. [ id:'test', single_end:false ] | ||
pattern: "*tsv" | ||
- "*.tsv": | ||
type: map | ||
description: | | ||
Groovy Map containing sample information | ||
e.g. [ id:'test', single_end:false ] | ||
Comment on lines
+42
to
+45
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The description needs correcting |
||
pattern: "*tsv" | ||
- versions: | ||
- versions.yml: | ||
type: file | ||
description: File containing software versions | ||
pattern: "versions.yml" | ||
authors: | ||
- "@jiahang1234" | ||
- "@sofstam" | ||
maintainers: | ||
- "@sofstam" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
nextflow_process { | ||
|
||
script "../main.nf" | ||
process "SYLPH_PROFILE" | ||
tag "modules" | ||
tag "modules_nfcore" | ||
tag "sylph" | ||
tag "sylph/profile" | ||
|
||
test("sarscov2 illumina single-end [fastq_gz]") { | ||
when { | ||
process { | ||
""" | ||
input[0] = [ [ id:'test', single_end:true ], // meta map | ||
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true) ] | ||
] | ||
input[1] = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true) | ||
""" | ||
} | ||
} | ||
|
||
then { | ||
assertAll( | ||
{ assert process.success }, | ||
{ assert snapshot( | ||
process.out.versions, | ||
process.out.profile_out.collect { file(it[1]).readLines().contains("complete genome") }, | ||
).match() | ||
} | ||
) | ||
} | ||
} | ||
|
||
test("sarscov2 illumina paired-end [fastq_gz]") { | ||
when { | ||
process { | ||
""" | ||
input[0] = [ [ id:'test', single_end:false ], // meta map | ||
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true), | ||
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ] | ||
] | ||
input[1] = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true) | ||
""" | ||
} | ||
} | ||
|
||
then { | ||
assertAll( | ||
{ assert process.success }, | ||
{ assert snapshot( | ||
process.out.versions, | ||
process.out.profile_out.collect { file(it[1]).readLines().contains("complete genome") }, | ||
).match() | ||
} | ||
) | ||
} | ||
} | ||
|
||
test("sarscov2 illumina paired-end [fastq_gz]-stub") { | ||
|
||
options "-stub" | ||
|
||
when { | ||
process { | ||
""" | ||
input[0] = [ [ id:'test', single_end:false ], // meta map | ||
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true), | ||
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ] | ||
] | ||
input[1] = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true) | ||
""" | ||
} | ||
} | ||
|
||
then { | ||
assertAll( | ||
{ assert process.success }, | ||
{ assert snapshot( | ||
process.out.versions, | ||
process.out.profile_out.collect { file(it[1]).readLines().contains("complete genome") }, | ||
).match() | ||
} | ||
) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{ | ||
"versions": { | ||
"content": [ | ||
[ | ||
"versions.yml:md5,7b5a545483277cc0ff9189f8891e737f" | ||
] | ||
], | ||
"meta": { | ||
"nf-test": "0.9.2", | ||
"nextflow": "24.10.1" | ||
}, | ||
"timestamp": "2024-12-05T10:06:07.353254" | ||
}, | ||
"sarscov2 illumina paired-end [fastq_gz]": { | ||
"content": [ | ||
[ | ||
"versions.yml:md5,7b5a545483277cc0ff9189f8891e737f" | ||
], | ||
[ | ||
false | ||
] | ||
], | ||
"meta": { | ||
"nf-test": "0.9.2", | ||
"nextflow": "24.10.1" | ||
}, | ||
"timestamp": "2024-12-05T10:31:09.774052" | ||
}, | ||
"sarscov2 illumina single-end [fastq_gz]": { | ||
"content": [ | ||
[ | ||
"versions.yml:md5,7b5a545483277cc0ff9189f8891e737f" | ||
], | ||
[ | ||
false | ||
] | ||
], | ||
"meta": { | ||
"nf-test": "0.9.2", | ||
"nextflow": "24.10.1" | ||
}, | ||
"timestamp": "2024-12-05T10:29:46.733197" | ||
}, | ||
"sarscov2 illumina paired-end [fastq_gz]-stub": { | ||
"content": [ | ||
[ | ||
"versions.yml:md5,7b5a545483277cc0ff9189f8891e737f" | ||
], | ||
[ | ||
false | ||
] | ||
], | ||
"meta": { | ||
"nf-test": "0.9.2", | ||
"nextflow": "24.10.1" | ||
}, | ||
"timestamp": "2024-12-05T10:31:16.953204" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This says a Presketched db, but your test input supplies a fasta file.