-
Notifications
You must be signed in to change notification settings - Fork 98
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 nf-test for FUSIONCATCHER
subworkflow
#591
base: dev
Are you sure you want to change the base?
Conversation
Warning Newer version of the nf-core template is available. Your pipeline is using an old version of the nf-core template: 3.0.2. For more documentation on how to update your pipeline, please see the nf-core documentation and Synchronisation documentation. |
|
@@ -3,6 +3,6 @@ process { | |||
resourceLimits = [ | |||
cpus: 4, | |||
memory: '15.GB', | |||
time: '1.h' | |||
time: '4.h' |
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.
I know this is not optimal, maybe skip this change until using fusioncatcher_download
properly
"references", | ||
"references/ensembl", | ||
"references/ensembl/Homo_sapiens.GRCh38.102.chr.gtf", | ||
"references/ensembl/Homo_sapiens.GRCh38.102.dna.primary_assembly.fa", | ||
"references/ensembl/Homo_sapiens.GRCh38.102.dna.primary_assembly.fa.fai", | ||
"references/ensembl/Homo_sapiens.GRCh38.102.genepred", | ||
"references/ensembl/Homo_sapiens.GRCh38.102.gtf", | ||
"references/ensembl/Homo_sapiens.GRCh38.102.refflat", | ||
"references/ensembl/Homo_sapiens.GRCh38.102_rrna_intervals.gtf.interval_list", | ||
"references/hgnc", | ||
"references/hgnc/HGNC-DB-timestamp.txt", | ||
"references/hgnc/hgnc_complete_set.txt", | ||
"rrnatranscripts", | ||
"rrnatranscripts/Homo_sapiens.GRCh38.102_rrna_intervals.gtf" |
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.
Why are all of these references being removed?
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.
@atrigila Sorry for this but I'm having many issues when running the pipeline's test. I wanted to talk to you and @nschcolnicov about that because I don't know which ones are known to fail or succeed
@@ -6,8 +6,8 @@ process FUSIONCATCHER_DOWNLOAD { | |||
container "community.wave.seqera.io/library/fusioncatcher:1.33--4733482b637ef92f" | |||
|
|||
output: | |||
path "*" , emit: reference | |||
path "versions.yml" , emit: versions | |||
tuple env(meta), path("*"), emit: reference |
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.
Interesting. Did you find a change in behaviour with or without env()
?
|
||
if (( run_fusioncatcher || all) && !fusioninspector_only ) { | ||
if (fusioncatcher_fusions){ | ||
|
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.
ch_fusioncatcher_fusions = reads.combine(Channel.value(file(fusioncatcher_fusions, checkIfExists:true))) | ||
.map { meta, reads, fusions -> [ meta, fusions ] } | ||
} else { | ||
|
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.
PR checklist
nf-core lint
).nextflow run . -profile debug,test,docker --outdir <OUTDIR>
).docs/usage.md
is updated.docs/output.md
is updated.CHANGELOG.md
is updated.README.md
is updated (including new tool citations and authors/contributors).It's important to know that it takes almost and hour to download the references.
Added
FUSIONCATCHER
. Note: fusioncatcher reference files are large for testing purposes. After this it would be ideal to dedicate some time to create or obtain a reduced reference, as explained in Create small reference for fusioncatcher (chr4) #580.Changed
fusioncatcher
detect module's input, adding meta components.Perspectives