-
Notifications
You must be signed in to change notification settings - Fork 708
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
update config to enable usage of a custom config #1108
Conversation
|
conf/modules.config
Outdated
@@ -41,8 +41,8 @@ process { | |||
publishDir = [ | |||
path: { "${params.outdir}/genome" }, | |||
mode: params.publish_dir_mode, | |||
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }, | |||
enabled: params.save_reference | |||
pattern: "{!versions.yml}", |
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 doesn't work for me. See your tools PR
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.
yeah, I saw...
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 am sadness
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.
LGTM in theory. Haven't tested it, but tests passing and I'm due to run a test of the file complement before release anyway.
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.
Seems a couple of bits were accidentally removed.
@@ -167,19 +155,13 @@ process { | |||
ext.args = '--record-count 1000000 --seed 1' | |||
ext.prefix = { "${meta.id}.subsampled" } | |||
publishDir = [ | |||
path: { "${params.outdir}/sample_fastq/fastq" }, | |||
mode: params.publish_dir_mode, |
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.
Mode looks accidentally deleted here.
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.
@maxulysse will fix in other PRs- thanks @mahesh-panchal !
enabled: false | ||
] | ||
} | ||
|
||
withName: '.*:FASTQ_SUBSAMPLE_FQ_SALMON:SALMON_QUANT' { | ||
ext.args = '--skipQuant' | ||
publishDir = [ | ||
path: { "${params.outdir}/sample_fastq/salmon" }, | ||
mode: params.publish_dir_mode, |
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.
And here.
PR checklist
nf-core lint
).nextflow run . -profile 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).