comparison blast_to_scaffold.xml @ 0:7fb07a6ab968 draft

planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/blast_to_scaffold commit 8dbdc4db56dc4a00eb480fc191027a54ffd6ab45
author drosofff
date Tue, 05 Jan 2016 09:25:59 -0500
parents
children 35e2e6452cf7
comparison
equal deleted inserted replaced
-1:000000000000 0:7fb07a6ab968
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>
3 <requirements>
4 </requirements>
5 <command interpreter="python">
6 blast_to_scaffold.py --sequences $sequences
7 --guideSequence $guideSequence
8 --blast-tab $blast_tab
9 --output $output
10 </command>
11 <inputs>
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"/>
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"/>
15
16 </inputs>
17 <outputs>
18 <data format="fasta" name="output"/>
19 </outputs>
20
21
22 <tests>
23 <test>
24 <param name="sequences" value="contigs.fa" ftype="fasta"/>
25 <param name="blast_tab" value="blast.tab" ftype="tabular"/>
26 <param name="guideSequence" value="guideSequence.fa" ftype="tabular"/>
27 <output name="output" file="assembly.fa" ftype="fasta"/>
28 </test>
29 </tests>
30
31
32 <help>
33
34
35 **What it Does**
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.
38 The sequence used to 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.
40 Nucleotides of the guide sequence which were not covered by contigs are in small letters in the output assembly.
41
42
43 **Attribution**
44 This Galaxy tool was created by drosofff@gmail.com on 5/01/2016
45 </help>
46
47 </tool>