-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomputerome.config
44 lines (37 loc) · 1.92 KB
/
computerome.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
* -------------------------------------------------
* Nextflow config file for Computerome settings
* -------------------------------------------------
* Defines input files and everything required
* to run pipeline on Computerome (computerome.dk). Use as follows:
* nextflow run GAGA_Metagenome.nf -profile computerome,<docker/singularity>
*/
params {
config_profile_name = 'computerome'
config_profile_description = 'run the pipeline on Computerome (computerome.dk)'
// Limit resources so that this can run CI
max_cpus = 40
max_memory = 180.GB
max_time = 24.h
// Input genome assembly data
input = '/home/people/dinghe/ku_00039/people/joeviz/GAGA_genomes/Genome_assemblies/Final_PacBio_assemblies/GAGA-0080_nextpolish.fasta'
// Genome references
fasta = 'https://github.com/nf-core/test-datasets/raw/rnaseq/reference/genome.fa'
gtf = 'https://github.com/nf-core/test-datasets/raw/rnaseq/reference/genes.gtf.gz'
gff = 'https://github.com/nf-core/test-datasets/raw/rnaseq/reference/genes.gff.gz'
transcript_fasta = 'https://github.com/nf-core/test-datasets/raw/rnaseq/reference/transcriptome.fasta'
additional_fasta = 'https://github.com/nf-core/test-datasets/raw/rnaseq/reference/gfp.fa.gz'
hisat2_index = 'https://github.com/nf-core/test-datasets/raw/rnaseq/reference/hisat2.tar.gz'
star_index = 'https://github.com/nf-core/test-datasets/raw/rnaseq/reference/star.tar.gz'
salmon_index = 'https://github.com/nf-core/test-datasets/raw/rnaseq/reference/salmon.tar.gz'
rsem_index = 'https://github.com/nf-core/test-datasets/raw/rnaseq/reference/rsem.tar.gz'
// Other parameters
pseudo_aligner = 'salmon'
umitools_bc_pattern = 'NNNN'
// When using RSEM, remove warning from STAR whilst building tiny indices
modules {
'rsem_preparereference' {
args2 = "--genomeSAindexNbases 7"
}
}
}