Mercurial > repos > devteam > fastqc
annotate rgFastQC.xml @ 19:9da02be9c6cc draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
author | iuc |
---|---|
date | Fri, 10 May 2019 14:23:53 -0400 |
parents | 3e1cdf5406db |
children | ddf5c37952ac |
rev | line source |
---|---|
17
c15237684a01
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit e06f74f574276b793bf9c1c788de8d97db449af2
iuc
parents:
16
diff
changeset
|
1 <tool id="fastqc" name="FastQC" version="0.72"> |
3 | 2 <description>Read Quality reports</description> |
3 <requirements> | |
19
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
4 <requirement type="package" version="0.11.7">fastqc</requirement> |
3 | 5 </requirements> |
19
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
6 <command detect_errors="exit_code"><![CDATA[ |
13
9337dd1fbc66
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 8991687e2ec5f75d3841c613ea5d8ffda0389654
iuc
parents:
12
diff
changeset
|
7 #import re |
9337dd1fbc66
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 8991687e2ec5f75d3841c613ea5d8ffda0389654
iuc
parents:
12
diff
changeset
|
8 #set input_name = re.sub('[^\w\-\s]', '_', str($input_file.element_identifier)) |
17
c15237684a01
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit e06f74f574276b793bf9c1c788de8d97db449af2
iuc
parents:
16
diff
changeset
|
9 |
15
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
10 #if $input_file.ext.endswith('.gz'): |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
11 #set input_file_sl = $input_name + '.gz' |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
12 #elif $input_file.ext.endswith('.bz2'): |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
13 #set input_file_sl = $input_name + '.bz2' |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
14 #else |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
15 #set input_file_sl = $input_name |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
16 #end if |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
17 |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
18 #if 'bam' in $input_file.ext: |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
19 #set format = 'bam' |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
20 #elif 'sam' in $input_file.ext: |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
21 #set format = 'sam' |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
22 #else |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
23 #set format = 'fastq' |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
24 #end if |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
25 |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
26 ln -s '${input_file}' '${input_file_sl}' && |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
27 mkdir -p '${html_file.files_path}' && |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
28 fastqc |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
29 --outdir '${html_file.files_path}' |
19
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
30 |
10
a00a6402d09a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
9
diff
changeset
|
31 #if $contaminants.dataset and str($contaminants) > '' |
15
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
32 --contaminants '${contaminants}' |
10
a00a6402d09a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
9
diff
changeset
|
33 #end if |
17
c15237684a01
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit e06f74f574276b793bf9c1c788de8d97db449af2
iuc
parents:
16
diff
changeset
|
34 |
10
a00a6402d09a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
9
diff
changeset
|
35 #if $limits.dataset and str($limits) > '' |
15
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
36 --limits '${limits}' |
10
a00a6402d09a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
9
diff
changeset
|
37 #end if |
17
c15237684a01
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit e06f74f574276b793bf9c1c788de8d97db449af2
iuc
parents:
16
diff
changeset
|
38 |
15
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
39 --quiet |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
40 --extract |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
41 -f '${format}' |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
42 '${input_file_sl}' |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
43 |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
44 && cp '${html_file.files_path}'/*/fastqc_data.txt output.txt |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
45 && cp '${html_file.files_path}'/*\.html output.html |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
46 |
8
06819360a9e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit df4c0b0c6372e2984966e220fa42ecd8a3d370e8
devteam
parents:
7
diff
changeset
|
47 ]]></command> |
3 | 48 <inputs> |
12
484e86282f4b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 4b383d48868d7f3f6d35f242a0ee35953adcb037
iuc
parents:
11
diff
changeset
|
49 <param format="fastq,fastq.gz,fastq.bz2,bam,sam" name="input_file" type="data" |
484e86282f4b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 4b383d48868d7f3f6d35f242a0ee35953adcb037
iuc
parents:
11
diff
changeset
|
50 label="Short read data from your current history" /> |
8
06819360a9e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit df4c0b0c6372e2984966e220fa42ecd8a3d370e8
devteam
parents:
7
diff
changeset
|
51 <param name="contaminants" type="data" format="tabular" optional="true" label="Contaminant list" |
10
a00a6402d09a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
9
diff
changeset
|
52 help="tab delimited file with 2 columns: name and sequence. For example: Illumina Small RNA RT Primer CAAGCAGAAGACGGCATACGA" /> |
3 | 53 <param name="limits" type="data" format="txt" optional="true" label="Submodule and Limit specifing file" |
10
a00a6402d09a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
9
diff
changeset
|
54 help="a file that specifies which submodules are to be executed (default=all) and also specifies the thresholds for the each submodules warning parameter" /> |
3 | 55 </inputs> |
56 <outputs> | |
15
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
57 <data format="html" name="html_file" from_work_dir="output.html" label="${tool.name} on ${on_string}: Webpage" /> |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
58 <data format="txt" name="text_file" from_work_dir="output.txt" label="${tool.name} on ${on_string}: RawData" /> |
3 | 59 </outputs> |
60 <tests> | |
61 <test> | |
19
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
62 <param name="input_file" value="1000gsample.fastq" /> |
3 | 63 <param name="contaminants" value="fastqc_contaminants.txt" ftype="tabular" /> |
19
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
64 <output name="html_file" file="fastqc_report.html" ftype="html" lines_diff="100"/> |
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
65 <output name="text_file" file="fastqc_data.txt" ftype="txt" lines_diff="4"/> |
3 | 66 </test> |
67 <test> | |
19
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
68 <param name="input_file" value="1000gsample.fastq" /> |
3 | 69 <param name="limits" value="fastqc_customlimits.txt" ftype="txt" /> |
19
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
70 <output name="html_file" file="fastqc_report2.html" ftype="html" lines_diff="100"/> |
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
71 <output name="text_file" file="fastqc_data2.txt" ftype="txt" lines_diff="4"/> |
3 | 72 </test> |
9
3a458e268066
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit 8918618a5ef7bdca55a31cd919efa593044a376e
devteam
parents:
8
diff
changeset
|
73 <test> |
19
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
74 <param name="input_file" value="1000gsample.fastq.gz" ftype="fastq.gz" /> |
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
75 <param name="contaminants" value="fastqc_contaminants.txt" ftype="tabular" /> |
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
76 <output name="html_file" file="fastqc_report.html" ftype="html" lines_diff="100"/> |
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
77 <output name="text_file" file="fastqc_data.txt" ftype="txt" lines_diff="4"/> |
10
a00a6402d09a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
9
diff
changeset
|
78 </test> |
a00a6402d09a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
9
diff
changeset
|
79 <test> |
19
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
80 <param name="input_file" value="1000gsample.fastq.bz2" ftype="fastq.bz2" /> |
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
81 <param name="contaminants" value="fastqc_contaminants.txt" ftype="tabular" /> |
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
82 <output name="html_file" file="fastqc_report.html" ftype="html" lines_diff="100"/> |
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
83 <output name="text_file" file="fastqc_data.txt" ftype="txt" lines_diff="4"/> |
15
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
84 </test> |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
85 <test> |
2b0c9d9fc6ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents:
13
diff
changeset
|
86 <param name="input_file" value="hisat_output_1.bam" ftype="bam" /> |
19
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
87 <output name="html_file" file="fastqc_report_hisat.html" ftype="html" lines_diff="100"/> |
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
88 <output name="text_file" file="fastqc_data_hisat.txt" ftype="txt" lines_diff="4"/> |
9
3a458e268066
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit 8918618a5ef7bdca55a31cd919efa593044a376e
devteam
parents:
8
diff
changeset
|
89 </test> |
3 | 90 </tests> |
19
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
91 <help> |
0 | 92 .. class:: infomark |
93 | |
94 **Purpose** | |
95 | |
96 FastQC aims to provide a simple way to do some quality control checks on raw | |
8
06819360a9e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit df4c0b0c6372e2984966e220fa42ecd8a3d370e8
devteam
parents:
7
diff
changeset
|
97 sequence data coming from high throughput sequencing pipelines. |
19
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
98 It provides a modular set of analyses which you can use to give a quick |
8
06819360a9e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit df4c0b0c6372e2984966e220fa42ecd8a3d370e8
devteam
parents:
7
diff
changeset
|
99 impression of whether your data has any problems of |
0 | 100 which you should be aware before doing any further analysis. |
101 | |
102 The main functions of FastQC are: | |
103 | |
10
a00a6402d09a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
9
diff
changeset
|
104 - Import of data from BAM, SAM or FastQ/FastQ.gz files (any variant), |
0 | 105 - Providing a quick overview to tell you in which areas there may be problems |
106 - Summary graphs and tables to quickly assess your data | |
107 - Export of results to an HTML based permanent report | |
108 - Offline operation to allow automated generation of reports without running the interactive application | |
109 | |
110 ----- | |
111 | |
112 .. class:: infomark | |
113 | |
114 **FastQC** | |
115 | |
116 This is a Galaxy wrapper. It merely exposes the external package FastQC_ which is documented at FastQC_ | |
117 Kindly acknowledge it as well as this tool if you use it. | |
12
484e86282f4b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 4b383d48868d7f3f6d35f242a0ee35953adcb037
iuc
parents:
11
diff
changeset
|
118 FastQC incorporates the Picard-tools_ libraries for SAM/BAM processing. |
0 | 119 |
120 The contaminants file parameter was borrowed from the independently developed | |
121 fastqcwrapper contributed to the Galaxy Community Tool Shed by J. Johnson. | |
1 | 122 Adaption to version 0.11.2 by T. McGowan. |
0 | 123 |
124 ----- | |
125 | |
126 .. class:: infomark | |
127 | |
128 **Inputs and outputs** | |
129 | |
8
06819360a9e2
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit df4c0b0c6372e2984966e220fa42ecd8a3d370e8
devteam
parents:
7
diff
changeset
|
130 FastQC_ is the best place to look for documentation - it's very good. |
0 | 131 A summary follows below for those in a tearing hurry. |
132 | |
9
3a458e268066
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit 8918618a5ef7bdca55a31cd919efa593044a376e
devteam
parents:
8
diff
changeset
|
133 This wrapper will accept a Galaxy fastq, fastq.gz, sam or bam as the input read file to check. |
0 | 134 It will also take an optional file containing a list of contaminants information, in the form of |
1 | 135 a tab-delimited file with 2 columns, name and sequence. As another option the tool takes a custom |
136 limits.txt file that allows setting the warning thresholds for the different modules and also specifies | |
137 which modules to include in the output. | |
0 | 138 |
1 | 139 The tool produces a basic text and a HTML output file that contain all of the results, including the following: |
0 | 140 |
141 - Basic Statistics | |
142 - Per base sequence quality | |
143 - Per sequence quality scores | |
144 - Per base sequence content | |
145 - Per base GC content | |
146 - Per sequence GC content | |
147 - Per base N content | |
148 - Sequence Length Distribution | |
149 - Sequence Duplication Levels | |
150 - Overrepresented sequences | |
151 - Kmer Content | |
152 | |
153 All except Basic Statistics and Overrepresented sequences are plots. | |
11
db2dc6bc8f05
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 168f7aeb0f9f38de6dec873f3cbf0c30014fdd72
iuc
parents:
10
diff
changeset
|
154 .. _FastQC: http://www.bioinformatics.babraham.ac.uk/projects/fastqc/ |
12
484e86282f4b
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 4b383d48868d7f3f6d35f242a0ee35953adcb037
iuc
parents:
11
diff
changeset
|
155 .. _Picard-tools: https://broadinstitute.github.io/picard/ |
19
9da02be9c6cc
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2f544e337886709995a93d53f394919ce8e4673a
iuc
parents:
18
diff
changeset
|
156 </help> |
2 | 157 <citations> |
158 <citation type="bibtex"> | |
10
a00a6402d09a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents:
9
diff
changeset
|
159 @unpublished{andrews_s, |
2 | 160 author = {Andrews, S.}, |
161 keywords = {bioinformatics, ngs, qc}, | |
162 priority = {2}, | |
163 title = {{FastQC A Quality Control tool for High Throughput Sequence Data}}, | |
164 url = {http://www.bioinformatics.babraham.ac.uk/projects/fastqc/} | |
165 } | |
166 </citation> | |
167 </citations> | |
0 | 168 </tool> |