Skip to content

Commit 452ee2e

Browse files
author
Zachary Foster
committed
remove view
1 parent b32f303 commit 452ee2e

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ docs/lab_meetings
2020
path_surveil_data
2121
.RData
2222
deleteme/
23+
tests/output/
2324

subworkflows/local/prepare_input/main.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ workflow PREPARE_INPUT {
106106

107107
// Add estimated depth and kingdom to sample metadata
108108
sendsketch_depth = BBMAP_SENDSKETCH.out.hits
109-
.splitText(limit: 2, by: 2).view()
109+
.splitText(limit: 2, by: 2)
110110
.map { sample_meta, header ->
111111
def match = header =~ /Depth: ([0-9.]+)/
112112
[sample_meta, match[0][1]]
113-
}.view()
113+
}
114114
sample_data = sample_data
115115
.map{ sample_meta, ref_metas ->
116116
[[id: sample_meta.sample_id], sample_meta, ref_metas]

0 commit comments

Comments
 (0)