annotate test-data/fastqc_customlimits.txt @ 1:67355741fbc3 draft

Uploaded from GH
author devteam
date Tue, 11 Nov 2014 12:18:17 -0500
parents
children 5b995cef2fbb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
1 # For each of the modules you can choose to not run that
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
2 # module at all by setting the value below to 1 for the
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
3 # modules you want to remove.
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
4 duplication ignore 1
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
5 kmer ignore 0
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
6 n_content ignore 0
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
7 overrepresented ignore 0
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
8 quality_base ignore 0
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
9 sequence ignore 0
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
10 gc_sequence ignore 0
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
11 quality_sequence ignore 1
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
12 tile ignore 1
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
13 sequence_length ignore 0
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
14 adapter ignore 0
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
15
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
16 # For the duplication module the value is the percentage
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
17 # remaining after deduplication. Measured levels below
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
18 # these limits trigger the warning / error.
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
19 duplication warn 70
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
20 duplication error 50
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
21
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
22 # For the kmer module the filter is on the -log10 binomial
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
23 # pvalue for the most significant Kmer, so 5 would be
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
24 # 10^-5 = p<0.00001
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
25 kmer warn 2
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
26 kmer error 5
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
27
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
28 # For the N module the filter is on the percentage of Ns
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
29 # at any position in the library
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
30 n_content warn 5
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
31 n_content error 20
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
32
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
33 # For the overrepresented seqs the warn value sets the
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
34 # threshold for the overrepresented sequences to be reported
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
35 # at all as the proportion of the library which must be seen
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
36 # as a single sequence
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
37 overrepresented warn 0.001
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
38 overrepresented error 1
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
39
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
40 # The per base quality filter uses two values, one for the value
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
41 # of the lower quartile, and the other for the value of the
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
42 # median quality. Failing either of these will trigger the alert
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
43 quality_base_lower warn 10
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
44 quality_base_lower error 5
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
45 quality_base_median warn 50
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
46 quality_base_median error 20
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
47
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
48 # The per base sequence content module tests the maximum deviation
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
49 # between A and T or C and G
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
50 sequence warn 2
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
51 sequence error 5
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
52
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
53 # The per sequence GC content tests the maximum deviation between
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
54 # the theoretical distribution and the real distribution
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
55 gc_sequence warn 15
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
56 gc_sequence error 30
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
57
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
58 # The per sequence quality module tests the phred score which is
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
59 # most frequently observed
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
60 quality_sequence warn 27
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
61 quality_sequence error 20
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
62
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
63 # The per tile module tests the maximum phred score loss between
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
64 # and individual tile and the average for that base across all tiles
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
65 tile warn 5
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
66 tile error 10
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
67
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
68 # The sequence length module tests are binary, so the values here
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
69 # simply turn them on or off. The actual tests warn if you have
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
70 # sequences of different length, and error if you have sequences
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
71 # of zero length.
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
72
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
73 sequence_length warn 1
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
74 sequence_length error 1
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
75
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
76 # The adapter module's warnings and errors are based on the
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
77 # percentage of reads in the library which have been observed
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
78 # to contain an adapter associated Kmer at any point
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
79
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
80 adapter warn 5
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
81 adapter error 10
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
82
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
83
67355741fbc3 Uploaded from GH
devteam
parents:
diff changeset
84