Skip to content

Commit 2ecf58f

Browse files
committed
code polish
1 parent 6a100b2 commit 2ecf58f

File tree

1 file changed

+12
-10
lines changed
  • subworkflows/local/prepare_intervals

1 file changed

+12
-10
lines changed

subworkflows/local/prepare_intervals/main.nf

+12-10
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ include { TABIX_BGZIPTABIX as TABIX_BGZIPTABIX_INTERVAL_COMBINED } from '../../.
1414

1515
workflow PREPARE_INTERVALS {
1616
take:
17-
fasta_fai // mandatory [ fasta_fai ]
18-
intervals // [ params.intervals ]
19-
no_intervals // [ params.no_intervals ]
20-
nucleotides_per_second
21-
outdir
22-
step
17+
fasta_fai // mandatory [ params.fasta_fai ]
18+
intervals // optional [ params.intervals ]
19+
no_intervals // boolean [ params.no_intervals ]
20+
nucleotides_per_second // mandatory [ params.nucleotides_per_second ]
21+
outdir // mandatory [ params.outdir ]
22+
step // mandatory [ params.step ]
2323

2424
main:
2525
versions = Channel.empty()
@@ -69,10 +69,12 @@ workflow PREPARE_INTERVALS {
6969
}
7070

7171
// Now for the intervals.bed the following operations are done:
72-
// 1. Intervals file is split up into multiple bed files for scatter/gather
73-
// 2. Each bed file is indexed
72+
// 1/ Split up intervals bed file into multiple bed files for scatter/gather
73+
// 2/ Tabix index each bed file
7474

75-
// 1. Intervals file is split up into multiple bed files for scatter/gather & grouping together small intervals
75+
// 1/ Split up intervals bed file into multiple bed files for scatter/gather
76+
// Also group together small intervals
77+
// And add the number of intervals to the channel
7678
intervals_bed = intervals_bed
7779
.flatten()
7880
.map { intervals_ ->
@@ -100,7 +102,7 @@ workflow PREPARE_INTERVALS {
100102
.map { intervals_ -> [intervals_, intervals_.size()] }
101103
.transpose()
102104

103-
// 2. Create bed.gz and bed.gz.tbi for each interval file. They are split by region (see above)
105+
// 2/ Tabix index each bed file
104106
TABIX_BGZIPTABIX_INTERVAL_SPLIT(intervals_bed.map { intervals_, _num_intervals -> [[id: intervals_.baseName], intervals_] })
105107

106108
intervals_bed_gz_tbi = TABIX_BGZIPTABIX_INTERVAL_SPLIT.out.gz_tbi

0 commit comments

Comments
 (0)