Skip to content
Snippets Groups Projects

fix bug (index bam between star and htseq)

Merged Carine Rey requested to merge dev_carine into master
1 file
+ 9
1
Compare changes
  • Side-by-side
  • Inline
+ 9
1
@@ -26,6 +26,11 @@ include {
star_mapping_fastq_out: "star_bam/"
)
include { index_bam
} from './nf_modules/samtools/main.nf' addParams(
htseq_out: "star_bam/"
)
include { htseq_count_with_gff
} from './nf_modules/htseq/main.nf' addParams(
htseq_out: "htseq_count/"
@@ -86,9 +91,12 @@ workflow {
star_index.collect(),
fastp.out.fastq,
)
//// index bam
index_bam(star_mapping_fastq.out.bam)
htseq_count_with_gff(
star_mapping_fastq.out.bam,
index_bam.out.bam_idx,
genome_gff3_file
)
Loading