-
Notifications
You must be signed in to change notification settings - Fork 3
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
Drop added AberrantSplicing #35
Conversation
|
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.
Massive work Lucia! ⭐
I have some comments and questions. A lot of it has to do with variable naming, which I think could do being a little more explicit :)
This comment was marked as outdated.
This comment was marked as outdated.
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.
Looks good! Some tiny, tiny comments
modules/local/drop_sample_annot.nf
Outdated
--gtf $gtf_name \\ | ||
$baseDir/bin/drop_sample_annot.py \\ | ||
--bam ${bam} \\ | ||
--sample $input_samples \\ |
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.
--sample $input_samples \\ | |
--sample ${samples.id} \\ |
Suggestion if you remove the check for samples
modules/local/drop_sample_annot.nf
Outdated
def strandedness = samples ? "--strandedness ${samples.strandedness}" : "" | ||
def input_samples = samples ? "${samples.id}" : "" |
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.
def strandedness = samples ? "--strandedness ${samples.strandedness}" : "" | |
def input_samples = samples ? "${samples.id}" : "" | |
def strandedness = samples ? "--strandedness ${samples.strandedness}" : "" |
Maybe we should remove this part then as you here check if samples is given and otherwise sets the string to empty. See comment below . Same for strandedness if it is a mandatory parameter
Co-authored-by: Anders Jemt <jemten@users.noreply.github.com>
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.
Looks good!
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).