annotate assembly_stats_txt.xml @ 0:6544228ea290 default tip

Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
author konradpaszkiewicz
date Tue, 07 Jun 2011 16:24:46 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
1 <tool id="assemblystats" name="assemblystats" version="1.0.1">
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
2 <description>Summarise an assembly (e.g. N50 metrics)</description>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
3 <command interpreter="python">
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
4 assembly_stats_txt.py
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
5 '$type' '$stats.extra_files_path'
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
6 '$type'
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
7 '$bucket'
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
8 '$input'
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
9 '$stats'
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
10 '$sortedcontigs'
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
11 '$histogrampng'
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
12 '$summedcontigspng'
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
13 '$histogramdata'
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
14 '$summedcontigdata'
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
15
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
16 </command>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
17 <inputs>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
18 <param label="Type of read" name="type" type="select" help="Is this from an genomic (contig) or transcriptomic assembly (isotig) or are these raw reads (read)">
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
19 <option value="contig" selected="yes">Contig (if from genomic assembly)</option>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
20 <option value="isotig">Isotig (if from transcriptomic assembly)</option>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
21 <option value="read">Raw reads from sequencer in FASTA format (useful for 454 data)</option>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
22
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
23 </param>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
24 <param name="bucket" type="boolean" label="Output histogram with bin sizes=1" truevalue="-b" falsevalue="" help="Use this to specify whether or not bin sizes of 1 should be used when plotting histograms"/>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
25 <param format="fasta" name="input" type="data" label="Source file in FASTA format"/>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
26
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
27 </inputs>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
28 <outputs>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
29 <data format="tabular" name="stats" label="Assembly statistics"/>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
30 <data format="fasta" name="sortedcontigs" label="Sorted contigs" />
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
31 <data format="png" name="histogrampng" label="Histogram of contig sizes"/>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
32 <data format="png" name="summedcontigspng" label="Cumulative sum of contig sizes"/>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
33 <data format="tabular" name="histogramdata" label="Histogram data"/>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
34 <data format="tabular" name="summedcontigdata" label="Cumulative sum of contig size data"/>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
35 </outputs>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
36 <requirements>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
37 </requirements>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
38 <help>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
39 **Summarise assembly overview**
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
40
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
41 This script is used to give summary statistics of an assembly or set of reads. Typically this is run after an assembly to evaluate gross features.
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
42
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
43
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
44 # Gives back
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
45 # - N50
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
46 # - num of contigs > 1 kb
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
47 # - num of contigs
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
48 # - Read or Contig Histogram and graphs.
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
49 # - Summed contig length (by number of contigs, in sorted order)
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
50 </help>
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
51
6544228ea290 Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
konradpaszkiewicz
parents:
diff changeset
52 </tool>