mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-05 05:52:07 -05:00
Apply suggestions from code review
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
This commit is contained in:
parent
5be1598b29
commit
8e2749beb7
1 changed files with 3 additions and 3 deletions
|
@ -33,7 +33,7 @@ process STAR_ALIGN {
|
||||||
|
|
||||||
tuple val(meta), path('*sortedByCoord.out.bam') , optional:true, emit: bam_sorted
|
tuple val(meta), path('*sortedByCoord.out.bam') , optional:true, emit: bam_sorted
|
||||||
tuple val(meta), path('*toTranscriptome.out.bam'), optional:true, emit: bam_transcript
|
tuple val(meta), path('*toTranscriptome.out.bam'), optional:true, emit: bam_transcript
|
||||||
tuple val(meta), path('*Aligned.unsort.out.bam'), optional:true, emit: bam_unsorted
|
tuple val(meta), path('*Aligned.unsort.out.bam') , optional:true, emit: bam_unsorted
|
||||||
tuple val(meta), path('*fastq.gz') , optional:true, emit: fastq
|
tuple val(meta), path('*fastq.gz') , optional:true, emit: fastq
|
||||||
tuple val(meta), path('*.tab') , optional:true, emit: tab
|
tuple val(meta), path('*.tab') , optional:true, emit: tab
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ process STAR_ALIGN {
|
||||||
$seq_center \\
|
$seq_center \\
|
||||||
$options.args
|
$options.args
|
||||||
|
|
||||||
${mv_unsorted_bam}
|
$mv_unsorted_bam
|
||||||
|
|
||||||
if [ -f ${prefix}.Unmapped.out.mate1 ]; then
|
if [ -f ${prefix}.Unmapped.out.mate1 ]; then
|
||||||
mv ${prefix}.Unmapped.out.mate1 ${prefix}.unmapped_1.fastq
|
mv ${prefix}.Unmapped.out.mate1 ${prefix}.unmapped_1.fastq
|
||||||
|
|
Loading…
Reference in a new issue