annotate fastqc/fastqc.xml @ 0:1d373f219445 default tip

Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
author jjohnson
date Tue, 07 Jun 2011 17:22:05 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
1 <tool id="FastQC" name="FastQC" version="1.0.0">
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
2 <description>quality control checks on raw sequence data</description>
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
3 <command interpreter="python">fastqc.py
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
4 #if $input.extension.startswith( "fastq"):
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
5 --format=fastq
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
6 #else
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
7 --format=$input.extension
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
8 #end if
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
9 --input='$input'
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
10 --name='$input.name'
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
11 --dir='$report.extra_files_path'
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
12 --report='$report'
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
13 #if $contaminants != None and $contaminants != "None" and $contaminants != "":
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
14 --contaminants=$contaminants
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
15 #end if
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
16 </command>
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
17 <inputs>
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
18 <param name="input" type="data" format="fastq,sam,bam" label="FASTQ reads" />
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
19 <param name="contaminants" type="data" format="tabular" optional="true" label="Contaminants"
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
20 help="Two fields per line separated by a TAB: name DNA_sequence. For example: Illumina Small RNA RT Primer CAAGCAGAAGACGGCATACGA"/>
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
21 </inputs>
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
22 <outputs>
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
23 <data name="report" format="html" />
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
24 </outputs>
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
25 <tests>
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
26 <!--
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
27 <test>
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
28 <param name="input1_file" value="3.fastqsanger" ftype="fastqsanger" />
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
29 <output name="output1_file" file="split_pair_reads_1.fastqsanger" />
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
30 <output name="output2_file" file="split_pair_reads_2.fastqsanger" />
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
31 </test>
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
32 -->
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
33 </tests>
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
34 <help>
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
35 **What it does**
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
36
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
37 FastQC_ is a product of Bioinformatics Group at the Babraham Institute. FastQC aims to provide a simple way to do some quality control checks on raw sequence data coming from high throughput sequencing pipelines. It provides a modular set of analyses which you can use to give a quick impression of whether your data has any problems of which you should be aware before doing any further analysis.
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
38
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
39 The main functions of FastQC are::
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
40
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
41 - Import of data from BAM, SAM or FastQ files (any variant)
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
42 - Provding a quick overview to tell you in which areas there may be problems
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
43 - Summary graphs and tables to quickly assess your data
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
44 - Export of results to an HTML based permanent report
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
45 - Offline operation to allow automated generation of reports without running the interactive application
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
46
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
47
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
48 .. _FastQC: http://www.bioinformatics.bbsrc.ac.uk/projects/fastqc/
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
49
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
50 -----
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
51
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
52 **Input format**
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
53
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
54 Any fastq file, for example::
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
55
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
56 @HWI-EAS91_1_30788AAXX:7:21:1542:1758
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
57 GTCAATTGTACTGGTCAATACTAAAAGAATAGGATCGCTCCTAGCATCTGGAGTCTCTATCACCTGAGCCCA
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
58 +HWI-EAS91_1_30788AAXX:7:21:1542:1758
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
59 hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh`hfhhVZSWehR
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
60
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
61 **Contaminants format**
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
62
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
63 An optional contaminant file (otherwise FastQC will use the default)::
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
64
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
65 # This file contains a list of potential contaminants which are
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
66 # frequently found in high throughput sequencing reactions. These
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
67 # are mostly sequences of adapters / primers used in the various
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
68 # sequencing chemistries.
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
69 #
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
70 # You can add more sequences to the file by putting one line per entry
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
71 # and specifying a name[tab]sequence. If the contaminant you add is
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
72 # likely to be of use to others please consider sending it to the FastQ
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
73 # authors, either via a bug report at www.bioinformatics.bbsrc.ac.uk/bugzilla/
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
74 # or by directly emailing simon.andrews@bbsrc.ac.uk so other users of
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
75 # the program can benefit.
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
76 Illumina Single End Apapter 1 ACACTCTTTCCCTACACGACGCTGTTCCATCT
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
77 Illumina Single End Apapter 2 CAAGCAGAAGACGGCATACGAGCTCTTCCGATCT
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
78 Illumina Single End PCR Primer 1 AATGATACGGCGACCACCGAGATCTACACTCTTTCCCTACACGACGCTCTTCCGATCT
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
79 Illumina Single End PCR Primer 2 CAAGCAGAAGACGGCATACGAGCTCTTCCGATCT
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
80 Illumina Single End Sequencing Primer ACACTCTTTCCCTACACGACGCTCTTCCGATCT
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
81
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
82
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
83 -----
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
84
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
85 **Outputs**
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
86
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
87 An HTML file with links to::
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
88
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
89 - fastqc_report.html
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
90 - summary.txt
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
91 - fastqc_data.txt
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
92
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
93 </help>
1d373f219445 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
jjohnson
parents:
diff changeset
94 </tool>