-
Notifications
You must be signed in to change notification settings - Fork 26
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 new parameters --reference
and --protospacer
#45
Conversation
|
@nf-core-bot fix linting please! |
.join(INPUT_CHECK.out.protospacer | ||
.map { | ||
meta, fastq -> | ||
[ meta - meta.subMap('id') + [id: meta.id.split('_')[0..-2].join('_')], fastq ] |
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'm not sure what line 150 does?
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.
When reading the input sample sheet, we add a _T<number>
suffix to the sample name (see https://github.com/nf-core/crisprseq/blob/master/bin/check_samplesheet.py#L120). We use this to concatenate the fastq files if one sample has more than fastq file. Here we are removing this suffix so that the meta map in other channels matches the one of reads.
Add new parameters
--reference
and--protospacer
.Close #43
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).