-
Notifications
You must be signed in to change notification settings - Fork 727
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 changes from additional fasta PR #419
Conversation
Co-authored-by: Olga Botvinnik <[email protected]>
@@ -298,9 +332,7 @@ if (params.gtf) { | |||
Channel | |||
.fromPath(params.gtf, checkIfExists: true) | |||
.ifEmpty { exit 1, "GTF annotation file not found: ${params.gtf}" } | |||
.into { gtf_makeSTARindex; gtf_makeHisatSplicesites; gtf_makeHISATindex; gtf_makeSalmonIndex; gtf_makeBED12; |
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.
@olgabot I am not sure if this change is correct - But I did it to not have the channels called by the operator here and in the later steps as outputs.
same as PR - #208 |
Co-authored-by: Olga Botvinnik <[email protected]>
Output concatenated genome fasta to RSEM reference
@olgabot please review? |
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.
Excited to see this get in!
main.nf
Outdated
@@ -395,6 +417,9 @@ if (params.genome) summary['Genome'] = params.genome | |||
if (params.pico) summary['Library Prep'] = "SMARTer Stranded Total RNA-Seq Kit - Pico Input" | |||
summary['Strandedness'] = (unStranded ? 'None' : forwardStranded ? 'Forward' : reverseStranded ? 'Reverse' : 'None') | |||
summary['Trimming'] = "5'R1: $clip_r1 / 5'R2: $clip_r2 / 3'R1: $three_prime_clip_r1 / 3'R2: $three_prime_clip_r2 / NextSeq Trim: $params.trim_nextseq" | |||
if (params.additional_fasta){ |
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.
Can this if statement be on one line?
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.
Except for the Dockerfile / sysctl stuff, I'm happy with this 👍
Need to think about making all of this a bit more modular using DSLv2 soon, but thats something for a different discussion/PR :-)
Dockerfile
Outdated
@@ -11,3 +11,4 @@ ENV PATH /opt/conda/envs/nf-core-rnaseq-1.4.3dev/bin:$PATH | |||
|
|||
# Dump the details of the installed packages to a file for posterity | |||
RUN conda env export --name nf-core-rnaseq-1.4.3dev > nf-core-rnaseq-1.4.3dev.yml | |||
COPY assets/sysctl.conf /etc/sysctl.conf |
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.
Mhm, this seems to be changing stuff that might affect others too - maybe get rid of this?
assets/sysctl.conf
Outdated
@@ -0,0 +1 @@ | |||
vm.nr_hugepages=128 |
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.
See above ;-)
Could you fix the markdown issues once more?
|
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.
Thank you for fixing everything @pranathivemuri !
Many thanks to contributing to nf-core/rnaseq!
To ensure that your build passes, please make sure your pull request is to the
dev
branch rather than tomaster
. Thank you!Please fill in the appropriate checklist below (delete whatever is not relevant). These are the most common things requested on pull requests (PRs).
PR checklist
dev
rather thanmaster
nextflow run . -profile test,docker
).nf-core lint .
).docs
is updatedCHANGELOG.md
is updatedREADME.md
is updatedLearn more about contributing: https://github.com/nf-core/rnaseq/tree/master/.github/CONTRIBUTING.md