Skip to content
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

Fix transcriptome staging issues on DNAnexus for rsem/prepareference #1163

Merged
merged 1 commit into from
Dec 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions modules/rsem/preparereference/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ process RSEM_PREPAREREFERENCE {
path gtf

output:
path "rsem" , emit: index
path "rsem/*transcripts.fa", emit: transcript_fasta
path "versions.yml" , emit: versions
path "rsem" , emit: index
path "*transcripts.fa", emit: transcript_fasta
path "versions.yml" , emit: versions

script:
def args = task.ext.args ?: ''
Expand All @@ -40,6 +40,8 @@ process RSEM_PREPAREREFERENCE {
$fasta \\
rsem/genome

cp rsem/genome.transcripts.fa .
mahesh-panchal marked this conversation as resolved.
Show resolved Hide resolved

cat <<-END_VERSIONS > versions.yml
"${task.process}":
rsem: \$(rsem-calculate-expression --version | sed -e "s/Current version: RSEM v//g")
Expand All @@ -55,6 +57,8 @@ process RSEM_PREPAREREFERENCE {
$fasta \\
rsem/genome

cp rsem/genome.transcripts.fa .

cat <<-END_VERSIONS > versions.yml
"${task.process}":
rsem: \$(rsem-calculate-expression --version | sed -e "s/Current version: RSEM v//g")
Expand Down