forked from salzman-lab/nf-sicilian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws_maca_small.conf
52 lines (47 loc) · 2.43 KB
/
aws_maca_small.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
/*
* -------------------------------------------------
* 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'
outdir = 's3://salzman-lab/nf-sicilian-outputs/aws-maca-small-chr19'
// 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 = [
['MACA_24m_M_BLADDER_58', [
's3://salzman-lab/fastqs-for-testing/MACA_24m_M_BLADDER_58_S5_L001_R1_001.subsample-10-percent.fastq.gz',
's3://salzman-lab/fastqs-for-testing/MACA_24m_M_BLADDER_58_S5_L001_R2_001.subsample-10-percent.fastq.gz'
]],
['MACA_24m_M_BLADDER_59', [
's3://salzman-lab/fastqs-for-testing/MACA_24m_M_BLADDER_59_S6_L001_R1_001.subsample-10-percent.fastq.gz',
's3://salzman-lab/fastqs-for-testing/MACA_24m_M_BLADDER_59_S6_L001_R2_001.subsample-10-percent.fastq.gz'
]],
]
// star_index = 's3://czbiohub-reference/igenomes/Mus_musculus/NCBI/GRCm38/Sequence/STARIndex/'
fasta = 'https://github.com/czbiohub/test-datasets/raw/olgabot/sicilian/reference/mm10_chrom19.fa'
gtf = 'https://github.com/czbiohub/test-datasets/raw/olgabot/sicilian/reference/GCF_000001635.26_GRCm38.p6_genomic.chr19.gtf.gz'
domain = 's3://salzman-lab/hg38_ref_files/domain_file.txt'
save_reference = true
stranded = true
tenx = true
// annotator = 's3://czbiohub-reference/sicilian/mouse_mm10_Refs/annotator_file/refseq_mm10.p6.pkl'
// exon_bounds = 's3://czbiohub-reference/sicilian/mouse_mm10_Refs/exon_pickle_file/refseq_mm10.p6_exon_bounds.pkl'
// splices = 's3://czbiohub-reference/sicilian/mouse_mm10_Refs/splice_pickle_file/refseq_mm10.p6_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' : 'ignore' }
}