Mercurial > repos > devteam > fastqc
annotate rgFastQC.xml @ 7:3fdc1a74d866 draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit 0a6b68fa8ae5c04f18c4a517fc73a819f765700b
author | devteam |
---|---|
date | Mon, 11 Apr 2016 10:27:34 -0400 |
parents | 28d39af2dd06 |
children | 06819360a9e2 |
rev | line source |
---|---|
7
3fdc1a74d866
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit 0a6b68fa8ae5c04f18c4a517fc73a819f765700b
devteam
parents:
6
diff
changeset
|
1 <tool id="fastqc" name="FastQC" version="0.65"> |
3 | 2 <description>Read Quality reports</description> |
3 <requirements> | |
6
28d39af2dd06
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqc commit 8328b3d01e1cb49c5dcbb6578ec42784ad6beaa8
devteam
parents:
3
diff
changeset
|
4 <requirement type="package" version="0.11.4">FastQC</requirement> |
3 | 5 </requirements> |
6 <stdio> | |
7 <exit_code range="1:" /> | |
8 <exit_code range=":-1" /> | |
9 <regex match="Error:" /> | |
10 <regex match="Exception:" /> | |
11 </stdio> | |
12 <command interpreter="python"> | |
13 rgFastQC.py | |
2 | 14 -i "$input_file" |
15 -d "$html_file.files_path" | |
16 -o "$html_file" | |
17 -t "$text_file" | |
18 -f "$input_file.ext" | |
19 -j "$input_file.name" | |
20 #if $contaminants.dataset and str($contaminants) > '' | |
21 -c "$contaminants" | |
22 #end if | |
23 #if $limits.dataset and str($limits) > '' | |
24 -l "$limits" | |
25 #end if | |
3 | 26 </command> |
27 <inputs> | |
28 <param format="fastqsanger,fastq,bam,sam" name="input_file" type="data" label="Short read data from your current history" /> | |
29 <param name="contaminants" type="data" format="tabular" optional="true" label="Contaminant list" | |
30 help="tab delimited file with 2 columns: name and sequence. For example: Illumina Small RNA RT Primer CAAGCAGAAGACGGCATACGA"/> | |
31 <param name="limits" type="data" format="txt" optional="true" label="Submodule and Limit specifing file" | |
32 help="a file that specifies which submodules are to be executed (default=all) and also specifies the thresholds for the each submodules warning parameter" /> | |
33 </inputs> | |
34 <outputs> | |
35 <data format="html" name="html_file" label="${tool.name} on ${on_string}: Webpage" /> | |
36 <data format="txt" name="text_file" label="${tool.name} on ${on_string}: RawData" /> | |
37 </outputs> | |
38 <tests> | |
39 <test> | |
40 <param name="input_file" value="1000gsample.fastq" /> | |
41 <param name="contaminants" value="fastqc_contaminants.txt" ftype="tabular" /> | |
42 <output name="html_file" file="fastqc_report.html" ftype="html" lines_diff="100"/> | |
43 <output name="text_file" file="fastqc_data.txt" ftype="txt" lines_diff="100"/> | |
44 </test> | |
45 <test> | |
46 <param name="input_file" value="1000gsample.fastq" /> | |
47 <param name="limits" value="fastqc_customlimits.txt" ftype="txt" /> | |
48 <output name="html_file" file="fastqc_report2.html" ftype="html" lines_diff="100"/> | |
49 <output name="text_file" file="fastqc_data2.txt" ftype="txt" lines_diff="100"/> | |
50 </test> | |
51 </tests> | |
52 <help> | |
0 | 53 |
54 .. class:: infomark | |
55 | |
56 **Purpose** | |
57 | |
58 FastQC aims to provide a simple way to do some quality control checks on raw | |
59 sequence data coming from high throughput sequencing pipelines. | |
60 It provides a modular set of analyses which you can use to give a quick | |
61 impression of whether your data has any problems of | |
62 which you should be aware before doing any further analysis. | |
63 | |
64 The main functions of FastQC are: | |
65 | |
66 - Import of data from BAM, SAM or FastQ files (any variant) | |
67 - Providing a quick overview to tell you in which areas there may be problems | |
68 - Summary graphs and tables to quickly assess your data | |
69 - Export of results to an HTML based permanent report | |
70 - Offline operation to allow automated generation of reports without running the interactive application | |
71 | |
72 | |
73 ----- | |
74 | |
75 | |
76 .. class:: infomark | |
77 | |
78 **FastQC** | |
79 | |
80 This is a Galaxy wrapper. It merely exposes the external package FastQC_ which is documented at FastQC_ | |
81 Kindly acknowledge it as well as this tool if you use it. | |
82 FastQC incorporates the Picard-tools_ libraries for sam/bam processing. | |
83 | |
84 The contaminants file parameter was borrowed from the independently developed | |
85 fastqcwrapper contributed to the Galaxy Community Tool Shed by J. Johnson. | |
1 | 86 Adaption to version 0.11.2 by T. McGowan. |
0 | 87 |
88 ----- | |
89 | |
90 .. class:: infomark | |
91 | |
92 **Inputs and outputs** | |
93 | |
94 FastQC_ is the best place to look for documentation - it's very good. | |
95 A summary follows below for those in a tearing hurry. | |
96 | |
97 This wrapper will accept a Galaxy fastq, sam or bam as the input read file to check. | |
98 It will also take an optional file containing a list of contaminants information, in the form of | |
1 | 99 a tab-delimited file with 2 columns, name and sequence. As another option the tool takes a custom |
100 limits.txt file that allows setting the warning thresholds for the different modules and also specifies | |
101 which modules to include in the output. | |
0 | 102 |
1 | 103 The tool produces a basic text and a HTML output file that contain all of the results, including the following: |
0 | 104 |
105 - Basic Statistics | |
106 - Per base sequence quality | |
107 - Per sequence quality scores | |
108 - Per base sequence content | |
109 - Per base GC content | |
110 - Per sequence GC content | |
111 - Per base N content | |
112 - Sequence Length Distribution | |
113 - Sequence Duplication Levels | |
114 - Overrepresented sequences | |
115 - Kmer Content | |
116 | |
117 All except Basic Statistics and Overrepresented sequences are plots. | |
118 .. _FastQC: http://www.bioinformatics.bbsrc.ac.uk/projects/fastqc/ | |
119 .. _Picard-tools: http://picard.sourceforge.net/index.shtml | |
120 | |
2 | 121 </help> |
122 <citations> | |
123 <citation type="bibtex"> | |
124 @ARTICLE{andrews_s, | |
125 author = {Andrews, S.}, | |
126 keywords = {bioinformatics, ngs, qc}, | |
127 priority = {2}, | |
128 title = {{FastQC A Quality Control tool for High Throughput Sequence Data}}, | |
129 url = {http://www.bioinformatics.babraham.ac.uk/projects/fastqc/} | |
130 } | |
131 </citation> | |
132 </citations> | |
0 | 133 </tool> |