annotate kissplice.xml @ 0:df98dd669021 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
author iuc
date Fri, 20 Oct 2017 03:11:24 -0400
parents
children 0ef37d7fb800
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
1 <?xml version='1.0' encoding='utf-8'?>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
2 <tool profile="16.04" id="kissplice" name="KisSplice" version="2.4.0">
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
3 <description>is a local transcriptome assembler for SNPs, indels and AS events</description>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
4 <macros>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
5 <import>macros.xml</import>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
6 </macros>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
7 <requirements>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
8 <requirement type="package" version="2.4.0p1">kissplice</requirement>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
9 </requirements>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
10 <version_command>kissplice --version</version_command>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
11 <command><![CDATA[
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
12
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
13 ## prepare symlinks
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
14 #set $samples = ""
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
15
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
16 #for x in $list_reads
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
17 #set $filename = str($x) + "." + $x.ext
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
18 ln -sf '${x}' '${filename}' &&
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
19 #set $samples += " -r '" + $filename + "'"
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
20 #end for
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
21
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
22 kissplice
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
23 $samples
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
24 -k ${k}
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
25 -c ${c}
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
26 -C ${C}
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
27 ${output_context}
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
28 --counts ${counts}
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
29
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
30 ]]></command>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
31 <inputs>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
32
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
33 <param name='list_reads' argument="-r" multiple="true" format="fasta,fastq" type="data" label="Reads file" />
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
34 <param argument="-k" type="integer" value="41" label="K-mer length" />
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
35 <param argument="-c" type="integer" value="2" label="K-mers present strictly less than this number of times in the dataset will be discarded (integer value required)" />
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
36 <param argument="-C" type="float" value="0.05" label="Edges with relative coverage below this number are removed (value in [0,1) required)" />
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
37 <param name="output_context" argument="--output-context" type="boolean" checked="false" truevalue="--output-context" falsevalue="" label="Output the maximum non-ambiguous context of each event" />
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
38 <param argument="--counts" type="select" label="Selecting how the counts will be reported">
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
39 <option value="0">Total counts</option>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
40 <option value="1">Counts on junctions</option>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
41 <option value="2">All counts</option>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
42 </param>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
43 <param name="output_option" type="select" label="Output type">
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
44 <option value="alternative_file">Generate only the Alternative Splicing file</option>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
45 <option value="all_files">Generate all files</option>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
46 </param>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
47 </inputs>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
48 <outputs>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
49 <data name="type0a" format="fasta" label="Single SNPs or sequencing errors" from_work_dir="results/*_coherents_type_0a.fa">
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
50 <filter>output_option == 'all_files'</filter>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
51 </data>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
52 <data name="type0b" format="fasta" label="Multiple SNPs or sequencing errors" from_work_dir="results/*_coherents_type_0b.fa">
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
53 <filter>output_option == 'all_files'</filter>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
54 </data>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
55 <data name="type1" format="fasta" label="Alternative splicing events" from_work_dir="results/*_coherents_type_1.fa"/>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
56 <data name="type2" format="fasta" label="Inexact tandem repeats" from_work_dir="results/*_coherents_type_2.fa">
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
57 <filter>output_option == 'all_files'</filter>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
58 </data>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
59 <data name="type3" format="fasta" label="Short indels" from_work_dir="results/*_coherents_type_3.fa">
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
60 <filter>output_option == 'all_files'</filter>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
61 </data>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
62 <data name="type4" format="fasta" label="Other events" from_work_dir="results/*_coherents_type_4.fa">
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
63 <filter>output_option == 'all_files'</filter>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
64 </data>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
65 </outputs>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
66
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
67 <tests>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
68 <test>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
69 <param name="list_reads" value="kissplice/reads1,kissplice/reads2" ftype="fasta" />
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
70 <param name="k" value="25"/>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
71 <param name="output_option" value="alternative_file" />
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
72 <output name="type1" file="kissplice/alternative_splicing.fa"/>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
73 </test>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
74 </tests>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
75
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
76 <help><![CDATA[
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
77
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
78 **Description**
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
79
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
80 KisSplice is a piece of software that enables the **analysis of RNA-seq data with or without a reference genome**. It is an exact local transcriptome assembler that allows one to identify **SNPs, indels and alternative splicing events**. It can deal with an arbitrary number of biological conditions, and will quantify each variant in each condition. It has been tested on Illumina datasets of up to 1G reads. Its memory consumption is around 5Gb for 100M reads.
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
81
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
82 KisSplice is not a full-length transcriptome assembler. This means that it will output the variable regions of the transcripts, not reconstruct them entirely. However, KisSplice results can be further aligned to a reference transcriptome (if available), or to the output of a full-length transcriptome assembler like Trinity or Oases.
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
83
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
84 ------
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
85
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
86 **Website**
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
87
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
88 References, documentation and FAQ here_.
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
89
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
90 .. _here: http://kissplice.prabi.fr/
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
91
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
92
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
93 ]]></help>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
94 <expand macro="citations">
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
95 <citation type="bibtex">
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
96 @article{PMID:22537044,
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
97 author = {Sacomoto, G. A. and Kielbassa, J. and Chikhi, R. and Uricaru, R. and Antoniou, P. and Sagot, M. F. and Peterlongo, P. and Lacroix, V.},
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
98 title = {KISSPLICE: de-novo calling alternative splicing events from RNA-seq data.},
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
99 journal = {BMC Bioinformatics},
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
100 year = {2012},
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
101 volume = {13 Suppl 6},
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
102 pages = {S5},
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
103 url = {http://www.ncbi.nlm.nih.gov/pubmed/22537044},
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
104 }
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
105 </citation>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
106 </expand>
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
107
df98dd669021 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread commit a213833526146246d277ec7851165971449b501e
iuc
parents:
diff changeset
108 </tool>