Skip to content

Commit 5ed3035

Browse files
committed
Fixed bugs in denovotranscript.nf and nextflow.config files. Fixed some of the commands in submodule 2
1 parent b70fc7a commit 5ed3035

3 files changed

Lines changed: 16 additions & 4 deletions

File tree

GoogleCloud/Submodule_2_annotation_only.ipynb

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,17 @@
123123
">`gsutil` is a tool allows you to interact with Google storage buckes through the command line."
124124
]
125125
},
126+
{
127+
"cell_type": "code",
128+
"execution_count": null,
129+
"id": "b6c7eca2",
130+
"metadata": {},
131+
"outputs": [],
132+
"source": [
133+
"# Create the bucket in your notebook first \n",
134+
"!mkdir ./resources"
135+
]
136+
},
126137
{
127138
"cell_type": "code",
128139
"execution_count": null,
@@ -148,7 +159,7 @@
148159
"metadata": {},
149160
"outputs": [],
150161
"source": [
151-
"! grep -c \">\" ./resources/trans/Oncorhynchus_mykiss_GGBN01.1.fa"
162+
"!grep -c \">\" /home/jupyter/resources/trans/Oncorhynchus_mykiss_GGBN01.1.fa"
152163
]
153164
},
154165
{
@@ -304,7 +315,7 @@
304315
"metadata": {},
305316
"outputs": [],
306317
"source": [
307-
"! cat ./onlyAnnRun/output/RUN_INFO.txt"
318+
"! cat ./<Your-Output-Directory-annotation-only>/output/RUN_INFO.txt"
308319
]
309320
},
310321
{

denovotranscript/nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ profiles {
113113
wave.enabled = true
114114
aws.region = 'us-east-1' // YOUR AWS REGION
115115

116-
workDir = 's3://<YOUR-BUCKET-NAME>/<Your-Work-Directory>/'' // Path of your working directory
116+
workDir = 's3://<YOUR-BUCKET-NAME>/<Your-Work-Directory>/' // Path of your working directory
117117
params.outdir = 's3://<YOUR-BUCKET-NAME>/<Your-Output-Directory>/' // Path of your output directory
118118

119119

denovotranscript/workflows/denovotranscript.nf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ workflow DENOVOTRANSCRIPT {
121121
ch_multiqc_files = ch_multiqc_files.mix(FASTQC_FINAL.out.zip.collect{it[1]})
122122
ch_versions = ch_versions.mix(FASTQC_FINAL.out.versions)
123123
}
124+
}
124125

125126
if (!params.qc_only) {
126127

@@ -337,7 +338,7 @@ workflow DENOVOTRANSCRIPT {
337338
}
338339

339340
}
340-
}
341+
341342
//
342343
// Collate and save software versions
343344
//

0 commit comments

Comments
 (0)