-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.config
104 lines (88 loc) · 2.27 KB
/
test.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
includeConfig "${projectDir}/config/default.config"
includeConfig "${projectDir}/config/methods.config"
includeConfig "${projectDir}/nextflow.config"
params {
output_dir = "${projectDir}/test/output/test-integration-entrypoint-parser/" as String
input_csv = "${projectDir}/test/test-integration-entrypoint-parser/input.csv" as String
sample_id = 'UCLA0001'
index_dir = NFT_INDEX_DIR
ucla_cds = false
save_intermediate_files = true
entrypoint = 'parser'
enable_encode_fasta = true
enable_decoy_fasta = true
database_processing_modes = ['split', 'merge', 'plain']
exprs_table = "${projectDir}/test/files/rsem.txt" as String
novel_orf_peptide = NFT_NOVEL_ORF_PEPTIDE
alt_translation_peptide = NFT_ALT_TRANSLATION_PEPTIDE
parseREDItools {
transcript_id_column = 17
min_coverage_alt = 3
min_frequency_alt = 0.1
}
parseArriba {
min_split_read1 = 1
min_split_read2 = 1
min_confidence = 'medium'
}
parseCIRCexplorer {
min_read_number = 1
}
parseFusionCatcher {
max_common_mapping = 0
min_spanning_unique = 5
}
parseRMATS {
min_ijc = 1
min_sjc = 1
}
parseSTARFusion {
min_est_j = 5.0
}
callVariant {
max_variants_per_node = 7
cleavage_rule = 'trypsin'
miscleavage = 2
min_mw = 500
min_length = 7
max_length = 25
}
filterFasta {
variant_peptide {
skip_lines = 1
tx_id_col = 1
quant_col = 5
quant_cutoff = 100
}
novel_orf_peptide {
skip_lines = 1
tx_id_col = 1
quant_col = 5
quant_cutoff = 100
}
alt_translation_peptide {
skip_lines = 1
tx_id_col = 1
quant_col = 5
quant_cutoff = 100
}
merged_peptides {
skip_lines = 1
tx_id_col = 1
quant_col = 5
quant_cutoff = 100
}
}
splitFasta {
order_source = 'gSNP,gINDEL,Fusion'
max_source_groups = 2
}
}
methods.setup()
process {
echo = false
withName: 'call_VariantPeptide' {
cpus = 2
memory = '3 GB'
}
}