-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlocal_test.conf
46 lines (41 loc) · 1.7 KB
/
local_test.conf
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
45
46
/*
* -------------------------------------------------
* Nextflow config file for running tests
* -------------------------------------------------
* Defines bundled input files and everything required
* to run a fast and simple test. Use as follows:
* nextflow run nf-core/sicilian -profile test,<docker/singularity>
*/
params {
config_profile_name = 'Test profile'
config_profile_description = 'Minimal test dataset to check pipeline function'
// Limit resources so that this can run on GitHub Actions
max_cpus = 2
max_memory = 6.GB
max_time = 48.h
// Input data
// TODO nf-core: Specify the paths to your test data on nf-core/test-datasets
// TODO nf-core: Give any required params for the test so that command line flags are not needed
single_end = false
input = false
input_paths = [
['Testdata', ['s3://salzman-lab/sicilian/sample_1.fastq', 's3://salzman-lab/sicilian/sample_2.fastq']],
]
star_index = 's3://salzman-lab/hg38_STAR_ref/'
gtf = 's3://salzman-lab/GRCh38_latest_genomic.gtf'
domain = 's3://salzman-lab/hg38_STAR_ref/domain_file.txt'
stranded = true
tenx = true
annotator = 's3://salzman-lab/hg38_STAR_ref/hg38_refseq.pkl'
exon_bounds = 's3://salzman-lab/hg38_STAR_ref/hg38_refseq_exon_bounds.pkl'
splicesites = 's3://salzman-lab/hg38_STAR_ref/hg38_refseq_splices.pkl'
// Ignore `--input` as otherwise the parameter validation will throw an error
schema_ignore_params = 'genomes,input_paths,input'
// AWS params
// job_queue = "TowerForge-32pmXwKfAgvOyBacurFhwX"
}
// process {
// executor = 'awsbatch'
// queue = 'default-971039e0-830c-11e9-9e0b-02c5b84a8036'
// errorStrategy = { task.exitStatus in [143,137,104,134,139] ? 'retry' : 'finish' }
// }