-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
67 lines (48 loc) · 1.41 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
manifest {
author = "Eachan Johnson"
homePage = "https://github.com/scbirlab/nf-sbrnaseq"
description = "Process Nanopore POD5 files from multiple bacterial samples into a gene x cell count table."
defaultBranch = "main"
nextflowVersion = '!>=22.10.1'
version = "0.0.2"
doi = ''
}
params {
help = null
// *** Pipeline Input parameters ***
sample_sheet = null
data_dir = null
guppy_path = null
genome_fasta_dir = null
genome_gff_dir = null
barcode_kit = null
// *** Pipeline processing parameters ***
// - Basecalling
model = "dna_r10.4.1_e8.2_400bps"
// - Adapter trimming
trim_qual = 5
min_length = 64
// - UMI-tools
umitools_error = 6
// - Feature counting
// * Strandedness: 1 for forward, 2 for reverse
strand = 1
// which annotation types to use to count reads
// This is one or more (comma-separated) categories
// from column 3 of the GFF
ann_type = 'gene'
// What to use to label the features
// This is one or more (comma-separated) fields
// from column 9 of the GFF
label = 'Name'
}
profiles {
standard {
conda.enabled = true
conda.useMamba = true
process.conda = "${projectDir}/environment.yml"
process.executor = 'slurm'
notification.enabled = true
notification.to = "$USER@crick.ac.uk"
}
}