Skip to content
Snippets Groups Projects

fix bug (index bam between star and htseq)

1 file
+ 9
1
Compare changes
  • Side-by-side
  • Inline
+ 9
1
@@ -26,6 +26,11 @@ include {
@@ -26,6 +26,11 @@ include {
star_mapping_fastq_out: "star_bam/"
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
include { htseq_count_with_gff
} from './nf_modules/htseq/main.nf' addParams(
} from './nf_modules/htseq/main.nf' addParams(
htseq_out: "htseq_count/"
htseq_out: "htseq_count/"
@@ -86,9 +91,12 @@ workflow {
@@ -86,9 +91,12 @@ workflow {
star_index.collect(),
star_index.collect(),
fastp.out.fastq,
fastp.out.fastq,
)
)
 
 
//// index bam
 
index_bam(star_mapping_fastq.out.bam)
htseq_count_with_gff(
htseq_count_with_gff(
star_mapping_fastq.out.bam,
index_bam.out.bam_idx,
genome_gff3_file
genome_gff3_file
)
)
Loading