annotate rgFastQC.xml @ 20:ddf5c37952ac draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
author iuc
date Thu, 16 May 2019 07:45:56 -0400
parents 9da02be9c6cc
children e7b2202befea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
1 <tool id="fastqc" name="FastQC" version="0.72+galaxy1">
3
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
2 <description>Read Quality reports</description>
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
3 <requirements>
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
4 <requirement type="package" version="0.11.8">fastqc</requirement>
3
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
5 </requirements>
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
6 <stdio>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
7 <exit_code range="1:" level="fatal" description="FastQC returned non zero exit code" />
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
8 <exit_code range=":-1" level="fatal" description="FastQC returned non zero exit code" />
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
9 <regex match="There is insufficient memory for the Java Runtime Environment"
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
10 source="stdout"
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
11 level="fatal_oom"
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
12 description="Out of memory error occurred" />
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
13 </stdio>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
14 <command><![CDATA[
13
9337dd1fbc66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 8991687e2ec5f75d3841c613ea5d8ffda0389654
iuc
parents: 12
diff changeset
15 #import re
9337dd1fbc66 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 8991687e2ec5f75d3841c613ea5d8ffda0389654
iuc
parents: 12
diff changeset
16 #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
17
15
2b0c9d9fc6ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents: 13
diff changeset
18 #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
19 #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
20 #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
21 #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
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 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
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 #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
27 #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
28 #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
29 #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
30 #else
2b0c9d9fc6ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents: 13
diff changeset
31 #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
32 #end if
2b0c9d9fc6ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents: 13
diff changeset
33
2b0c9d9fc6ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents: 13
diff changeset
34 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
35 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
36 fastqc
2b0c9d9fc6ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents: 13
diff changeset
37 --outdir '${html_file.files_path}'
10
a00a6402d09a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents: 9
diff changeset
38 #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
39 --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
40 #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
41
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
42 #if $adapters.dataset and str($adapters) > ''
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
43 --adapters '${adapters}'
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
44 #end if
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
45
10
a00a6402d09a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents: 9
diff changeset
46 #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
47 --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
48 #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
49
15
2b0c9d9fc6ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents: 13
diff changeset
50 --quiet
2b0c9d9fc6ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents: 13
diff changeset
51 --extract
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
52 #if $min_length:
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
53 --min_length $min_length
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
54 #end if
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
55 $nogroup
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
56 --kmers $kmers
15
2b0c9d9fc6ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents: 13
diff changeset
57 -f '${format}'
2b0c9d9fc6ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents: 13
diff changeset
58 '${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
59
2b0c9d9fc6ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents: 13
diff changeset
60 && 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
61 && 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
62
8
06819360a9e2 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit df4c0b0c6372e2984966e220fa42ecd8a3d370e8
devteam
parents: 7
diff changeset
63 ]]></command>
3
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
64 <inputs>
12
484e86282f4b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 4b383d48868d7f3f6d35f242a0ee35953adcb037
iuc
parents: 11
diff changeset
65 <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
66 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
67 <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
68 help="tab delimited file with 2 columns: name and sequence. For example: Illumina Small RNA RT Primer CAAGCAGAAGACGGCATACGA" />
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
69 <param argument="--adapters" type="data" format="tabular" optional="true" label="Adapter list"
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
70 help="list of adapters adapter sequences which will be explicity searched against the library. tab delimited file with 2 columns: name and sequence." />
3
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
71 <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
72 help="a file that specifies which submodules are to be executed (default=all) and also specifies the thresholds for the each submodules warning parameter" />
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
73 <param argument="--nogroup" type="boolean" truevalue="--nogroup" falsevalue="" checked="False"
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
74 label="Disable grouping of bases for reads >50bp" help="Using this option will cause fastqc to crash and burn if you use it on really long reads, and your plots may end up a ridiculous size. You have been warned!"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
75 <param argument="--min_length" type="integer" value="" optional="true"
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
76 label="Lower limit on the length of the sequence to be shown in the report"
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
77 help=" As long as you set this to a value greater or equal to your longest read length then this will be the sequence length used to create your read groups. This can be useful for making directly comaparable statistics from datasets with somewhat variable read lengths."/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
78 <param argument="--kmers" type="integer" value="7" min="2" max="10"
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
79 label="length of Kmer to look for" help="note: the Kmer test is disabled and needs to be enabled using a custom Submodule and limits file"/>
3
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
80 </inputs>
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
81 <outputs>
15
2b0c9d9fc6ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents: 13
diff changeset
82 <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
83 <data format="txt" name="text_file" from_work_dir="output.txt" label="${tool.name} on ${on_string}: RawData" />
3
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
84 </outputs>
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
85 <tests>
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
86 <test>
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
87 <param name="input_file" value="1000trimmed.fastq" />
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
88 <output name="html_file" file="fastqc_report.html" ftype="html" lines_diff="100"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
89 <output name="text_file" file="fastqc_data.txt" ftype="txt"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
90 </test>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
91 <test>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
92 <param name="input_file" value="1000trimmed.fastq" />
3
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
93 <param name="contaminants" value="fastqc_contaminants.txt" ftype="tabular" />
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
94 <output name="html_file" file="fastqc_report_contaminants.html" ftype="html" lines_diff="100"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
95 <output name="text_file" file="fastqc_data_contaminants.txt" ftype="txt"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
96 </test>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
97 <test>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
98 <param name="input_file" value="1000trimmed.fastq" />
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
99 <param name="adapters" value="fastqc_adapters.txt" ftype="tabular" />
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
100 <output name="html_file" file="fastqc_report_adapters.html" ftype="html" lines_diff="100"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
101 <output name="text_file" file="fastqc_data_adapters.txt" ftype="txt"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
102 </test>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
103 <test>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
104 <param name="input_file" value="1000trimmed.fastq" />
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
105 <param name="limits" value="fastqc_customlimits.txt" ftype="txt" />
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
106 <output name="html_file" file="fastqc_report_customlimits.html" ftype="html" lines_diff="100"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
107 <output name="text_file" file="fastqc_data_customlimits.txt" ftype="txt"/>
3
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
108 </test>
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
109 <test>
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
110 <param name="input_file" value="1000trimmed.fastq" ftype="fastq" />
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
111 <param name="kmers" value="3" />
3
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
112 <param name="limits" value="fastqc_customlimits.txt" ftype="txt" />
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
113 <output name="html_file" file="fastqc_report_kmer.html" ftype="html" lines_diff="100"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
114 <output name="text_file" file="fastqc_data_kmer.txt" ftype="txt"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
115 <assert_command>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
116 <has_text text="--kmers 3"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
117 </assert_command>
3
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
118 </test>
9
3a458e268066 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit 8918618a5ef7bdca55a31cd919efa593044a376e
devteam
parents: 8
diff changeset
119 <test>
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
120 <param name="input_file" value="1000trimmed.fastq" />
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
121 <param name="min_length" value="108" />
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
122 <output name="html_file" file="fastqc_report_min_length.html" ftype="html" lines_diff="100"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
123 <output name="text_file" file="fastqc_data_min_length.txt" ftype="txt"/>
10
a00a6402d09a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents: 9
diff changeset
124 </test>
a00a6402d09a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents: 9
diff changeset
125 <test>
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
126 <param name="input_file" value="1000trimmed.fastq" ftype="fastq" />
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
127 <param name="nogroup" value="--nogroup" />
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
128 <output name="html_file" file="fastqc_report_nogroup.html" ftype="html" lines_diff="100"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
129 <output name="text_file" file="fastqc_data_nogroup.txt" ftype="txt"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
130 <assert_command>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
131 <has_text text="--nogroup"/>
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
132 </assert_command>
15
2b0c9d9fc6ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents: 13
diff changeset
133 </test>
2b0c9d9fc6ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents: 13
diff changeset
134 <test>
2b0c9d9fc6ca planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 35d722c0cafe2a2f2e4e2f73c265ae56ae237997
iuc
parents: 13
diff changeset
135 <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
136 <output name="html_file" file="fastqc_report_hisat.html" ftype="html" lines_diff="100"/>
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
137 <output name="text_file" file="fastqc_data_hisat.txt" ftype="txt"/>
9
3a458e268066 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit 8918618a5ef7bdca55a31cd919efa593044a376e
devteam
parents: 8
diff changeset
138 </test>
3
0b201de108b9 Uploaded
devteam
parents: 2
diff changeset
139 </tests>
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
140 <help><![CDATA[
0
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
141 .. class:: infomark
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
142
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
143 **Purpose**
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
144
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
145 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
146 sequence data coming from high throughput sequencing pipelines.
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
147 It provides a set of analyses which you can use to get 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
148 impression of whether your data has any problems of
0
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
149 which you should be aware before doing any further analysis.
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
150
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
151 The main functions of FastQC are:
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
152
10
a00a6402d09a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 2bfbb5ae6b801e43355fdc3f964a5111fe3fe3a1
iuc
parents: 9
diff changeset
153 - Import of data from BAM, SAM or FastQ/FastQ.gz files (any variant),
0
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
154 - Providing a quick overview to tell you in which areas there may be problems
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
155 - Summary graphs and tables to quickly assess your data
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
156 - Export of results to an HTML based permanent report
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
157 - Offline operation to allow automated generation of reports without running the interactive application
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
158
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
159 -----
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
160
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
161 .. class:: infomark
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
162
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
163 **FastQC**
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
164
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
165 This is a Galaxy wrapper. It merely exposes the external package FastQC_ which is documented at FastQC_
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
166 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
167 FastQC incorporates the Picard-tools_ libraries for SAM/BAM processing.
0
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
168
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
169 The contaminants file parameter was borrowed from the independently developed
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
170 fastqcwrapper contributed to the Galaxy Community Tool Shed by J. Johnson.
1
8fae48caaf06 Uploaded form GH
devteam
parents: 0
diff changeset
171 Adaption to version 0.11.2 by T. McGowan.
0
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
172
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
173 -----
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
174
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
175 .. class:: infomark
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
176
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
177 **Inputs and outputs**
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
178
8
06819360a9e2 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit df4c0b0c6372e2984966e220fa42ecd8a3d370e8
devteam
parents: 7
diff changeset
179 FastQC_ is the best place to look for documentation - it's very good.
0
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
180 A summary follows below for those in a tearing hurry.
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
181
9
3a458e268066 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit 8918618a5ef7bdca55a31cd919efa593044a376e
devteam
parents: 8
diff changeset
182 This wrapper will accept a Galaxy fastq, fastq.gz, sam or bam as the input read file to check.
0
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
183 It will also take an optional file containing a list of contaminants information, in the form of
1
8fae48caaf06 Uploaded form GH
devteam
parents: 0
diff changeset
184 a tab-delimited file with 2 columns, name and sequence. As another option the tool takes a custom
8fae48caaf06 Uploaded form GH
devteam
parents: 0
diff changeset
185 limits.txt file that allows setting the warning thresholds for the different modules and also specifies
8fae48caaf06 Uploaded form GH
devteam
parents: 0
diff changeset
186 which modules to include in the output.
0
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
187
1
8fae48caaf06 Uploaded form GH
devteam
parents: 0
diff changeset
188 The tool produces a basic text and a HTML output file that contain all of the results, including the following:
0
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
189
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
190 - Basic Statistics
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
191 - Per base sequence quality
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
192 - Per sequence quality scores
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
193 - Per base sequence content
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
194 - Per base GC content
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
195 - Per sequence GC content
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
196 - Per base N content
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
197 - Sequence Length Distribution
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
198 - Sequence Duplication Levels
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
199 - Overrepresented sequences
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
200 - Kmer Content
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
201
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
202 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
203 .. _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
204 .. _Picard-tools: https://broadinstitute.github.io/picard/
20
ddf5c37952ac planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc commit 89976e27bd11f1da3c95a5df6b67297496a8a89b
iuc
parents: 19
diff changeset
205 ]]></help>
2
d2cf2c0c8a11 Uploaded from GH
devteam
parents: 1
diff changeset
206 <citations>
d2cf2c0c8a11 Uploaded from GH
devteam
parents: 1
diff changeset
207 <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
208 @unpublished{andrews_s,
2
d2cf2c0c8a11 Uploaded from GH
devteam
parents: 1
diff changeset
209 author = {Andrews, S.},
d2cf2c0c8a11 Uploaded from GH
devteam
parents: 1
diff changeset
210 keywords = {bioinformatics, ngs, qc},
d2cf2c0c8a11 Uploaded from GH
devteam
parents: 1
diff changeset
211 priority = {2},
d2cf2c0c8a11 Uploaded from GH
devteam
parents: 1
diff changeset
212 title = {{FastQC A Quality Control tool for High Throughput Sequence Data}},
d2cf2c0c8a11 Uploaded from GH
devteam
parents: 1
diff changeset
213 url = {http://www.bioinformatics.babraham.ac.uk/projects/fastqc/}
d2cf2c0c8a11 Uploaded from GH
devteam
parents: 1
diff changeset
214 }
d2cf2c0c8a11 Uploaded from GH
devteam
parents: 1
diff changeset
215 </citation>
d2cf2c0c8a11 Uploaded from GH
devteam
parents: 1
diff changeset
216 </citations>
0
e28c965eeed4 Imported from capsule None
devteam
parents:
diff changeset
217 </tool>