annotate fastqc_stats.xml @ 0:2c74c5c70520 draft default tip

planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
author nml
date Wed, 11 Oct 2017 16:22:08 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
1 <tool id="FastQC_Summary" name="FastQC Summary" version="1.2">
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
2 <description>Provide a one line summary of a FastQC report(s)</description>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
3 <requirements>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
4 <requirement type="package" version="1.6.924">perl-bioperl</requirement>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
5 <requirement type="package" version="2.49">perl-getopt-long</requirement>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
6 </requirements>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
7 <command detect_errors="exit_code"><![CDATA[
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
8
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
9 perl $__tool_directory__/fastqc_stats.pl
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
10
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
11
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
12 #if $single_or_mate.library_type == "single"
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
13 --fastq_se $single_or_mate.fastq_file --g_rawdata_se $rawdata_file
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
14 --sample "$single_or_mate.fastq_file.name"
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
15 #elif $single_or_mate.library_type == "paired"
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
16 --fastq_pe_1 $single_or_mate.forward_fastq --fastq_pe_2 $single_or_mate.reverse_fastq --g_rawdata_pe_1 $single_or_mate.forward_rawdata --g_rawdata_pe_2 $single_or_mate.reverse_rawdata
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
17 --sample "$single_or_mate.forward_fastq.name"
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
18 #else
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
19 --fastq_pe_1 $single_or_mate.fastq_collection.forward --fastq_pe_2 $single_or_mate.fastq_collection.reverse --g_rawdata_pe_1 $single_or_mate.fastqc_collection.forward --g_rawdata_pe_2 $single_or_mate.fastqc_collection.reverse
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
20 --sample "$single_or_mate.fastq_collection.name"
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
21 #end if
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
22
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
23
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
24
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
25 #if $ref_or_num.select == "reference"
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
26 --ref $ref_or_num.ref_file
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
27 #else
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
28 --num_bps $ref_or_num.bp_num
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
29 #end if
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
30 -o $out_file
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
31
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
32 ]]></command>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
33 <inputs>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
34 <conditional name="single_or_mate">
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
35 <param name="library_type" type="select" label="Is this library single or paired-end?">
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
36 <option value="single">Single-end</option>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
37 <option value="paired">Paired-end</option>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
38 <option value="collection">Collection Paired-end Fastqs</option>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
39 </param>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
40 <when value="single">
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
41 <param name="fastq_file" type="data" format="fastqsanger,fastq" label="Single end FASTQ"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
42 <param name="rawdata_file" type="data" format="txt" label="FastQC RawData"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
43 </when>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
44 <when value="paired">
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
45 <param name="forward_fastq" type="data" format="fastqsanger,fastq" label="Forward FASTQ"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
46 <param name="reverse_fastq" type="data" format="fastqsanger,fastq" label="Reverse FASTQ"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
47 <param name="forward_rawdata" type="data" format="txt" label="FASTQC forward RawData"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
48 <param name="reverse_rawdata" type="data" format="txt" label="FASTQC reverse RawData"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
49 </when>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
50 <when value="collection">
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
51 <param name="fastq_collection" type="data_collection" label="Paired-end Fastq collection" help="" optional="false" format="txt" collection_type="paired" />
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
52 <param name="fastqc_collection" type="data_collection" label="Paired-end FastQC collection" help="" optional="false" format="txt" collection_type="paired" />
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
53 </when>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
54 </conditional>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
55 <conditional name="ref_or_num">
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
56 <param name="select" type="select" label="Reference file or number of base pairs?">
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
57 <option value="reference">Reference file</option>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
58 <option value="num_pairs">Number of base pairs</option>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
59 </param>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
60 <when value="reference">
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
61 <param name="ref_file" type="data" format='fasta' help="To determine raw genome coverage." label="Reference file"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
62 </when>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
63 <when value="num_pairs">
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
64 <param name="bp_num" type="integer" value="" label="Number of base pairs"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
65 </when>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
66 </conditional>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
67 </inputs>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
68 <outputs>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
69 <data format="tabular" name="out_file" label="Output csv file"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
70 </outputs>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
71 <tests>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
72 <test>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
73 <param name="fastq_file" value="forward.fastq"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
74 <param name="rawdata_file" value="forward.txt"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
75 <param name="ref_file" value="reference_1K.fa"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
76 <output name="out_file" value="output_single.tsv"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
77 </test>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
78 <test>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
79 <param name="library_type" value="paired"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
80 <param name="forward_fastq" value="forward.fastq"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
81 <param name="reverse_fastq" value="reverse.fastq"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
82 <param name="forward_rawdata" value="forward.txt"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
83 <param name="reverse_rawdata" value="reverse.txt"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
84 <param name="ref_file" value="reference_1K.fa"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
85 <output name="out_file" value="output_pe.tsv"/>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
86 </test>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
87 </tests>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
88 <help>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
89
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
90 What it does
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
91 ============
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
92 This script provides a one line summary of the FastQC report.
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
93
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
94 Inputs
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
95 ======
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
96 - **Is this library single or paired end?**: Choose Single-end or Paired-end. This option will display the correct number of input fields depending on the option selected
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
97 - **Fastq input**: - Fastqc file
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
98 - **FastQC rawData input**: - This is the txt file produced by the FastQC tool
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
99 - **Sample Name**: Sample name that will appear in the output file
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
100 - **Reference file or number of base pairs?**: Choose between providing a reference file or providing a number of basepairs to determine the raw genome coverage.
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
101
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
102 Outputs
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
103 =======
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
104 - **Output csv file**: Summarizes the FastQC report in a csv format
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
105 </help>
2c74c5c70520 planemo upload for repository https://github.com/phac-nml/galaxy_tools commit d5b7cb71616c0ac20e02ff8cb8c147b9d4a31691
nml
parents:
diff changeset
106 </tool>