File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Amplicon/Illumina/Workflow_Documentation/SW_AmpIllumina-B/workflow_code Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,9 @@ library(dada2); packageVersion("dada2")
60
60
library(DECIPHER ); packageVersion(" DECIPHER" )
61
61
library(biomformat ); packageVersion(" biomformat" )
62
62
63
+ # Set default internet timeout to 1 hour
64
+ options(timeout = 3600 )
65
+
63
66
# ## general processing ###
64
67
# reading in unique sample names into variable
65
68
sample.names <- scan(sample_IDs_file , what = " character" )
Original file line number Diff line number Diff line change @@ -50,6 +50,9 @@ library(dada2); packageVersion("dada2")
50
50
library(DECIPHER ); packageVersion(" DECIPHER" )
51
51
library(biomformat ); packageVersion(" biomformat" )
52
52
53
+ # Set default internet timeout to 1 hour
54
+ options(timeout = 3600 )
55
+
53
56
# ## general processing ###
54
57
# reading in unique sample names into variable
55
58
sample.names <- scan(sample_IDs_file , what = " character" )
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ process ZIP_BIOM {
13
13
input:
14
14
path(taxonomy_and_counts_biom)
15
15
output:
16
- path(" taxonomy-and-counts_ ${ params.assay_suffix} .biom.zip" ), emit: biom
16
+ path(" taxonomy-and-counts ${ params.assay_suffix} .biom.zip" ), emit: biom
17
17
path(" versions.txt" ), emit: version
18
18
script:
19
19
"""
20
- zip -j -q taxonomy-and-counts_ ${ params.assay_suffix} .biom.zip \\
20
+ zip -j -q taxonomy-and-counts ${ params.assay_suffix} .biom.zip \\
21
21
${ taxonomy_and_counts_biom}
22
22
23
23
zip -h | grep "Zip" | sed -E 's/(Zip.+\\ )).+/\\ 1/' > versions.txt
You can’t perform that action at this time.
0 commit comments