annotate phrap/phrap.xml @ 0:f9e4e6fe0e73 default tip

Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
author edward-kirton
date Tue, 07 Jun 2011 17:41:56 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
1 <tool id="phrap" name="Phrap" version="1.0.0">
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
2 <description>Assemble long reads/short contigs</description>
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
3 <command interpreter='bash'>phrap_wrapper.sh $label $fasta_infile $qual_infile $fasta_outfile $qual_outfile $singlets_outfile $fasta_outfile.extra_files_path</command>
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
4
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
5 <inputs>
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
6 <param name="label" type="text" value="seqs" label="Label for naming contig sequences (e.g. library or sample name)" help="Contigs will be named LABEL.Contig1, ..." />
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
7 <param name="fasta_infile" type="data" format="fasta" label="Long reads or contig sequences" />
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
8 <param name="qual_infile" type="data" format="qual" optional='True' label="Optional sequence quality scores (Phred-scaled)" />
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
9 </inputs>
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
10
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
11 <outputs>
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
12 <data name="fasta_outfile" format="fasta" />
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
13 <data name="qual_outfile" format="qual" label="Contig quality scores" />
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
14 <data name="singlets_outfile" format="fasta" label="Singlets Fasta" />
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
15 </outputs>
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
16
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
17 <help>
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
18 **What it does**
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
19
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
20 phrap ("phragment assembly program", or "phil's revised assembly
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
21 program"; a homonym of "frappe" = French for "swat") -- a
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
22 program for assembling shotgun DNA sequence data. Key features:
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
23 allows use of entire read (not just trimmed high quality part); uses a
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
24 combination of user-supplied and internally computed data quality
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
25 information to improve accuracy of assembly in the presence of
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
26 repeats; constructs contig sequence as a mosaic of the highest quality
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
27 parts of reads (rather than a consensus); provides extensive information
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
28 about assembly (including quality values for contig sequence) to
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
29 assist trouble-shooting; able to handle very large datasets.
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
30
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
31 **Notes**
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
32
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
33 phrap is great for assembling Sanger shotgun reads but should not be used for next-generation data (e.g. Illumina, Solid, 454, etc.).
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
34 However phrap is useful for combining short-read assemblies from Velvet or Abyss (i.e. results from using multiple k-mer parameters).
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
35 When used for this purpose, you should filter out short sequences first (e.g. less than 200-1000bp, depending on number of contigs).
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
36
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
37 **Reference**
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
38
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
39 http://www.phrap.org/phredphrap/phrap.html
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
40 </help>
f9e4e6fe0e73 Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
edward-kirton
parents:
diff changeset
41 </tool>