forked from salzman-lab/nf-sicilian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws_maca_chrM_skip_umitools.conf
56 lines (51 loc) · 2.58 KB
/
aws_maca_chrM_skip_umitools.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
47
48
49
50
51
52
53
54
55
56
/*
* -------------------------------------------------
* 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'
max_cpus = 2
max_memory = 60.GB
max_time = 48.h
outdir = 's3://salzman-lab/nf-sicilian-outputs/aws-maca-small-chrM'
// 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 = true
input = false
skip_umitools = true
input_paths = [
['MACA_24m_M_BLADDER_58', [
// It's weird that it's only one read and it says R2, but for 10x/droplet-based single cell, R1 is the
// barcode read and R2 is the "interesting" read that will actually align to the genome
'https://github.com/czbiohub/test-datasets/raw/olgabot/sicilian/testdata/MACA_24m_M_BLADDER_58_mm10_chrM_R2.fastq.gz',
]],
['MACA_24m_M_BLADDER_59', [
'https://github.com/czbiohub/test-datasets/raw/olgabot/sicilian/testdata/MACA_24m_M_BLADDER_59_mm10_chrM_R2.fastq.gz',
]],
]
// star_index = 's3://salzman-lab/nf-sicilian-outputs/aws-maca-small-chrM/genome/index/star/'
fasta = 'https://github.com/czbiohub/test-datasets/raw/olgabot/sicilian/reference/mm10_chromM.fa'
gtf = 'https://github.com/czbiohub/test-datasets/raw/olgabot/sicilian/reference/GCF_000001635.26_GRCm38.p6_genomic.chrM.gtf.gz'
domain = 's3://salzman-lab/hg38_ref_files/domain_file.txt'
save_reference = true
stranded = true
tenx = true
// annotator = 'https://github.com/czbiohub/test-datasets/raw/olgabot/sicilian/reference/sicilian/GCF_000001635_gene_names.pkl'
// exon_bounds = 'https://github.com/czbiohub/test-datasets/raw/olgabot/sicilian/reference/sicilian/GCF_000001635_exon_bounds.pkl'
// splices = 'https://github.com/czbiohub/test-datasets/raw/olgabot/sicilian/reference/sicilian/GCF_000001635_gene_names.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' }
// }