Skip to content

Commit 249c2a9

Browse files
committed
fix: remove GTF_FILTER.out.versions
1 parent 1562e01 commit 249c2a9

File tree

1 file changed

+3
-4
lines changed
  • subworkflows/local/prepare_genome

1 file changed

+3
-4
lines changed

subworkflows/local/prepare_genome/main.nf

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ workflow PREPARE_GENOME {
4747
rsem_index // directory: /path/to/rsem/index/
4848
salmon_index // directory: /path/to/salmon/index/
4949
kallisto_index // directory: /path/to/kallisto/index/
50-
hisat2_index // directory: /path/to/hisat2/index/
50+
hisat2_index // directory: /path/to/hisat2/index/
5151
bbsplit_index // directory: /path/to/rsem/index/
5252
gencode // boolean: whether the genome is from GENCODE
5353
is_aws_igenome // boolean: whether the genome files are from AWS iGenomes
@@ -139,14 +139,13 @@ workflow PREPARE_GENOME {
139139
} else {
140140
ch_transcript_fasta = Channel.value(file(transcript_fasta))
141141
}
142-
if (gencode) {
142+
if (gencode) {
143143
PREPROCESS_TRANSCRIPTS_FASTA_GENCODE ( ch_transcript_fasta )
144144
ch_transcript_fasta = PREPROCESS_TRANSCRIPTS_FASTA_GENCODE.out.fasta
145145
ch_versions = ch_versions.mix(PREPROCESS_TRANSCRIPTS_FASTA_GENCODE.out.versions)
146146
}
147147
} else {
148148
ch_transcript_fasta = MAKE_TRANSCRIPTS_FASTA ( ch_fasta, ch_gtf ).transcript_fasta
149-
ch_versions = ch_versions.mix(GTF_FILTER.out.versions)
150149
ch_versions = ch_versions.mix(MAKE_TRANSCRIPTS_FASTA.out.versions)
151150
}
152151

@@ -268,7 +267,7 @@ workflow PREPARE_GENOME {
268267
ch_versions = ch_versions.mix(SALMON_INDEX.out.versions)
269268
}
270269
}
271-
270+
272271
//
273272
// Uncompress Kallisto index or generate from scratch if required
274273
//

0 commit comments

Comments
 (0)