Skip to content

Commit d0b8c9d

Browse files
committed
Updated outdir and workDir with placeholder variables
1 parent 8cee886 commit d0b8c9d

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

GoogleCloud/denovotranscript/conf/test_params.config

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
params {
22
input = 'test_samplesheet.csv'
3-
outdir = 'test_results'
3+
outdir = 'gs://<YOUR-BUCKET-NAME>/outdir_transcriptome/'
4+
workDir = 'gs://<YOUR-BUCKET-NAME>/work_transcriptome/'
45
// max_memory = '6.GB'
56
// max_cpus = 2
67
// max_time = '6.h'

GoogleCloud/denovotranscript/nextflow.config

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ params {
4747

4848
// BUSCO options
4949
busco_mode = 'transcriptome'
50-
busco_lineage = 'auto'
50+
busco_lineage = 'vertebrata_odb10' //'auto'
5151
busco_lineages_path = null
5252
busco_config = null
5353

@@ -103,6 +103,14 @@ params {
103103
includeConfig 'conf/base.config'
104104

105105
profiles {
106+
gbatch {
107+
process.executor = 'google-batch'
108+
google.location = 'us-central1'
109+
google.region = 'us-central1'
110+
google.project = '<YOUR-PROJECT-ID>'
111+
process.machineType = 'n2-highmem-48'
112+
}
113+
106114
debug {
107115
dumpHashes = true
108116
process.beforeScript = 'echo $HOSTNAME'

0 commit comments

Comments
 (0)