-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextflow.config
47 lines (46 loc) · 1.39 KB
/
nextflow.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
45
46
47
params{
output = false
software = "cellranger"
bcl_run_folder = false
sample_whitelist = false
input_type = "samplesheet"
filter_dual_index = false
filter_single_index = false
lanes = false
use_bases_mask = false
delete_undetermined = false
barcode_mismatches = 1
project = false
include_introns = true
fastq_dir = false
samplesheet = false
aggr_name = "combined"
grouping = "$projectDir/templates/grouping.csv"
multiplexing = "$projectDir/templates/multiplexing.csv"
feature_csv = "$projectDir/templates/feature.csv"
hashtag_csv = "$projectDir/templates/feature.csv"
probes_csv = "$projectDir/templates/probes.csv"
probe_barcodes = "$projectDir/templates/probe_barcodes.csv"
transcriptome_dir = "/shared/biodata/reference/10x/refdata-gex-GRCh38-2020-A"
vdj_dir = "/shared/biodata/reference/10x/refdata-cellranger-vdj-GRCh38-alts-ensembl-5.0.0"
samples = false
dryrun = false
cellranger_version = "7.0.1"
}
process {
withLabel: cellranger {
beforeScript = "ml CellRanger/${params.cellranger_version}"
cpus = 8
memory = "64.GB"
}
withLabel: bamtofastq {
beforeScript = "ml CellRanger/${params.cellranger_version}"
cpus = 8
memory = "64.GB"
}
withLabel: python {
beforeScript = "ml Python"
cpus = 1
memory = "4.GB"
}
}