Skip to content

Commit 0b1640f

Browse files
LouisLeNezetvagkaratzas
authored andcommitted
Remove .view() (#9567)
1 parent 460be27 commit 0b1640f

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

modules/nf-core/genmap/map/tests/main.nf.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ nextflow_process {
3333
}
3434
process {
3535
"""
36-
input[0] = GENMAP_INDEX.out.index.view()
36+
input[0] = GENMAP_INDEX.out.index
3737
input[1] = [
3838
[id:"bed"],
3939
file(params.modules_testdata_base_path + 'genomics/sarscov2/genome/bed/test.bed', checkIfExists:true)

modules/nf-core/glimpse2/concordance/tests/main.nf.test

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ nextflow_process {
8080
.combine( allele_freq )
8181
.combine( Channel.of([[]]) )
8282
.combine( Channel.of([["chr22", "chr22"]]) )
83-
.view()
8483

8584
input[0] = list_inputs
8685
input[1] = Channel.of([[id:"params"], [],"0 0.01 0.05 0.1 0.2 0.5", [], [], [], []])

subworkflows/nf-core/bam_vcf_impute_glimpse2/main.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ workflow BAM_VCF_IMPUTE_GLIMPSE2 {
103103
ch_versions = ch_versions.mix(GLIMPSE2_PHASE.out.versions.first())
104104

105105
// Index phased file
106-
BCFTOOLS_INDEX_PHASE(GLIMPSE2_PHASE.out.phased_variants.view())
106+
BCFTOOLS_INDEX_PHASE(GLIMPSE2_PHASE.out.phased_variants)
107107
ch_versions = ch_versions.mix(BCFTOOLS_INDEX_PHASE.out.versions.first())
108108

109109
// Ligate all phased files in one and index it
110110
ligate_input = GLIMPSE2_PHASE.out.phased_variants
111111
.join(
112-
BCFTOOLS_INDEX_PHASE.out.tbi.mix(BCFTOOLS_INDEX_PHASE.out.csi).view(),
112+
BCFTOOLS_INDEX_PHASE.out.tbi.mix(BCFTOOLS_INDEX_PHASE.out.csi),
113113
failOnMismatch: true,
114114
failOnDuplicate: true,
115115
)

0 commit comments

Comments
 (0)