File: filter_body_template.html

package info (click to toggle)
bbmap 38.90%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 21,520 kB
  • sloc: java: 265,882; sh: 14,954; python: 5,247; ansic: 2,074; perl: 96; xml: 38; makefile: 37
file content (123 lines) | stat: -rwxr-xr-x 4,099 bytes parent folder | download | duplicates (4)
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<div>
    <span class="notice">Filtering is performed using BBTools rqcfilter.sh script.</span> <br />
</div>

<div style="padding: 10px">
    <h2 class="section-title"> Fastq Files </h2>
    <div class="section">
        <table class='data'>
            <tr>
                <th></th>
                <th>Number of Reads	</th>
                <th>File Size</th>
                <th>File Location</th>
            </tr>
            <tr>
                <th>Input FASTQ</th>
                <td>[_RAW-READ-CNT_]</td>
                <td>[_RAW-FILE-SIZE_] MB</td>
                <td>[_RAW-FILE-LOCATION_]</td>
            </tr>

            <tr>
                <th>Filtered FASTQ</th>
                <td>[_FILTERED-READ-CNT_]</td>
                <td>[_FILTERED-FILE-SIZE_] MB</td>
                <td>[_FILTERED-FILE-LOCATION_]</td>
            </tr>
            <tr>
                <th>Filtered %</th>
                <td>[_REMOVED-READ-PCT_]%</td>
                <td>-</td>
                <td>-</td>
            </tr>
        </table>
        <span class="notice">The file size for the filtered fastq is significantly smaller than the input fastq because the reads were re-ordered to optimize gzip file compression.</span>
    </div>
    <br />
    <h2 class="section-title"> Filtering Metrics </h2>
    <div class="section">
        <table class='hori, border, data'>
            <tr>
                <th>Metric</th>
                <th>Read Count</th>
                <th>Base Count</th>
            </tr>
            <tr>
                <th>Input</th>
                <td>[_RAW-READ-CNT_]</td>
                <td>[_RAW-BASE-CNT_]</td>
            </tr>

            <tr>
                <th>Remaining</th>
                <td>[_FILTERED-READ-CNT_]</td>
                <td>[_FILTERED-BASE-CNT_]</td>
            </tr>
            <tr>
                <th>Percentage Removed</th>
                <td>[_REMOVED-READ-PCT_]%</td>
                <td>[_REMOVED-BASE-PCT_]%</td>
            </tr>
        </table>
    </div>

    <br />
    <div class="section">
        <table class='data'>
            <tr>
                <th>Metric</th>
                <th>Percent	</th>
                <th>Read Count</th>
            </tr>
            <tr>
                <th>Low Quality Removed</th>
                <td>[_LOW-QUAL-REMOVED-PCT_]</td>
                <td>[_LOW-QUAL-REMOVED-READ-CNT_]</td>
            </tr>
            <tr>
                <th>Artifact Removed</th>
                <td>[_ARTI-REMOVED-PCT_]</td>
                <td>[_ARTI-REMOVED-READ-CNT_]</td>
            </tr>
            <tr>
                <th>Ribosomal RNA Removed</th>
                <td>[_RRNA-REMOVED-READ-PCT_]</td>
                <td>[_RRNA-REMOVED-READ-CNT_]</td>
            </tr>
            <tr>
                <th>Microbial Removed</th>
                <td>[_MICROBE-REMOVED-READ-PCT_]</td>
                <td>[_MICROBE-REMOVED-READ-CNT_]</td>
            </tr>
            <tr>
                <th>Human Filtered</th>
                <td>[_HUMAN-REMOVED-READ-PCT_]</td>
                <td>[_HUMAN-REMOVED-READ-CNT_]</td>
            </tr>
            <tr>
                <th>Dog Filtered</th>
                <td>[_DOG-REMOVED-READ-PCT_]</td>
                <td>[_DOG-REMOVED-READ-CNT_]</td>
            </tr>
            <tr>
                <th>Cat Filtered</th>
                <td>[_CAT-REMOVED-READ-PCT_]</td>
                <td>[_CAT-REMOVED-READ-CNT_]</td>
            </tr>
            <tr>
                <th>Mouse Filtered</th>
                <td>[_MOUSE-REMOVED-READ-PCT_]</td>
                <td>[_MOUSE-REMOVED-READ-CNT_]</td>
            </tr>
        </table>
        
        <!-- ul>
                <li>Filter log: [_FILTER-LOG_] ([_FILTER-LOG-SIZE_] KB)</li>
                <li>Filter Text Report: [_FILTER-REPORT_] ([_FILTER-REPORT-SIZE_] KB) filter.txt (878.0 bytes)</li>
        </ul -->
    </div>

    <br />
    [_FILTERED-READ-QC_]
</div>