comparison blast_to_scaffold.xml @ 1:35e2e6452cf7 draft

planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/blast_to_scaffold commit 5ecc0c7c2e7a6c1dfff04a881e55aa4b6d6e60a9
author drosofff
date Fri, 15 Jan 2016 12:35:45 -0500
parents 7fb07a6ab968
children 61731b911f4e
comparison
equal deleted inserted replaced
0:7fb07a6ab968 1:35e2e6452cf7
1 <tool id="blast2scaffold" name="blast_to_scaffold" version="0.1.0"> 1 <tool id="blast2scaffold" name="blast_to_scaffold" version="0.1.0">
2 <description>Generate DNA scaffold from blastn or tblastx alignment of Contigs</description> 2 <description>Generate DNA scaffold from blastn or tblastx alignment of Contigs</description>
3 <requirements> 3 <requirements>
4 </requirements> 4 </requirements>
5 <command interpreter="python"> 5 <command interpreter="python">
6 blast_to_scaffold.py --sequences $sequences 6 blast_to_scaffold.py --sequences "$sequences"
7 --guideSequence $guideSequence 7 --guideSequence "$guideSequence"
8 --blast-tab $blast_tab 8 --blast-tab "$blast_tab"
9 --output $output 9 --output "$output"
10 </command> 10 </command>
11 <inputs> 11 <inputs>
12 <param name="sequences" type="data" format="fasta" label="Select a fasta contigs file"/> 12 <param name="sequences" type="data" format="fasta" label="Select a fasta contigs file"/>
13 <param name="guideSequence" type="data" format="fasta" label="Select the fasta guide sequence for scaffolding"/> 13 <param name="guideSequence" type="data" format="fasta" label="Select the fasta guide sequence for scaffolding"/>
14 <param name="blast_tab" type="data" format="tabular" label="Select a blastn or tblastx output from your history" help="must have 13 columns with column 13 containing the subject lenght, other columns are standard"/> 14 <param name="blast_tab" type="data" format="tabular" label="Select a blastn or tblastx output from your history" help="must have 13 columns with column 13 containing the subject lenght, other columns are standard"/>
33 33
34 34
35 **What it Does** 35 **What it Does**
36 This tool start from DNA contigs that aligned to a subject DNA sequence through blastn or tblastx. 36 This tool start from DNA contigs that aligned to a subject DNA sequence through blastn or tblastx.
37 The contigs must be provided in fasta format. The blastn or tblastx output must be tabular, the 12 standard column plus column 13 with the length of the blastn or tblastx subject. 37 The contigs must be provided in fasta format. The blastn or tblastx output must be tabular, the 12 standard column plus column 13 with the length of the blastn or tblastx subject.
38 The sequence used to blastn or tblastx the contigs must be provided to serve as a guide to the final assembly 38 The sequence used to BLAST (blastn or tblastx) the contigs must be provided to serve as a guide to the final assembly
39 The final assembly is a DNA sequence. 39 The final assembly is a DNA sequence.
40 Nucleotides of the guide sequence which were not covered by contigs are in small letters in the output assembly. 40 Nucleotides of the guide sequence which were not covered by contigs are in small letters in the output assembly.
41 41
42 42
43 **Attribution** 43 **Attribution**