annotate kallisto_quant.xml @ 8:90e937ec7df8 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c657f8cc0308cd70b26e3b111e5d8008901cda24"
author iuc
date Sun, 18 Jul 2021 17:52:32 +0000
parents a7fdab2e4a37
children da0cbd9e1643
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
1 <?xml version="1.0"?>
8
90e937ec7df8 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c657f8cc0308cd70b26e3b111e5d8008901cda24"
iuc
parents: 6
diff changeset
2 <tool id="kallisto_quant" name="Kallisto quant" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.05">
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
3 <description>- quantify abundances of RNA-Seq transcripts</description>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
4 <macros>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
5 <import>macros.xml</import>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
6 </macros>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
7 <expand macro="requirements" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
8 <command detect_errors="exit_code">
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
9 <![CDATA[
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
10 #if $reference_transcriptome.reference_transcriptome_source == "history":
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
11 ln -s '$reference_transcriptome.reference' reference.fa &&
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
12 kallisto index reference.fa -i reference.kallisto &&
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
13 #set index_path = 'reference.kallisto'
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
14 #else:
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
15 #set index_path = $reference_transcriptome.index.fields.path
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
16 #end if
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
17 kallisto quant -i '$index_path'
5
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
18 $bias --bootstrap-samples $bootstrap_samples --seed $seed $fusion $lib_type $pseudobam
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
19 #if $pseudobam:
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
20 -o .
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
21 #else:
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
22 --threads \${GALAXY_SLOTS:-1}
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
23 -o .
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
24 #end if
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
25 #if str($single_paired.single_paired_selector) == 'single':
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
26 --single
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
27 #set $single_reads = $single_paired.reads
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
28 --fragment-length $single_paired.fragment_length
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
29 --sd $single_paired.sd
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
30 '$single_reads'
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
31 #else:
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
32 #if str($single_paired.collection.collection_selector) == 'datasets':
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
33 #set $forward_reads = $single_paired.collection.forward
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
34 #set $reverse_reads = $single_paired.collection.reverse
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
35 #else:
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
36 #set $forward_reads = $single_paired.collection.reads.forward
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
37 #set $reverse_reads = $single_paired.collection.reads.reverse
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
38 #end if
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
39 #set $reads = "'%s' '%s'" % ($forward_reads, $reverse_reads)
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
40 $reads
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
41 #end if
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
42 #if $pseudobam:
8
90e937ec7df8 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c657f8cc0308cd70b26e3b111e5d8008901cda24"
iuc
parents: 6
diff changeset
43 && samtools sort --no-PG -O bam -@ \${GALAXY_SLOTS:-1} -T "\${TMPDIR:-.}" -o '$pseudobam_output' pseudoalignments.bam
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
44 #end if
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
45 && cat run_info.json
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
46 ]]>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
47 </command>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
48 <inputs>
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
49 <expand macro="reference_input" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
50 <conditional name="single_paired">
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
51 <param name="single_paired_selector" type="select" label="Single-end or paired reads">
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
52 <option value="single" selected="true">Single-end</option>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
53 <option value="paired">Paired</option>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
54 </param>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
55 <when value="single">
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
56 <param name="reads" type="data" format="fastq,fastq.gz" label="Reads in FASTQ format" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
57 <param name="fragment_length" argument="--fragment-length" type="integer" value="200" label="Average fragment length" help="Illumina typically produces reads of 180-200bp" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
58 <param argument="--sd" type="integer" value="20" label="Estimated standard deviation of fragment length" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
59 </when>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
60 <when value="paired">
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
61 <conditional name="collection">
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
62 <param name="collection_selector" type="select" label="Collection or individual datasets">
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
63 <option value="datasets" selected="true">Individual files</option>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
64 <option value="collection">Pair or list of pairs</option>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
65 </param>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
66 <when value="datasets">
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
67 <param name="forward" type="data" format="fastq,fastq.gz" label="Forward reads" />
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
68 <param name="reverse" type="data" format="fastq,fastq.gz" label="Reverse reads" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
69 </when>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
70 <when value="collection">
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
71 <param name="reads" type="data_collection" format="fastq,fastq.gz" collection_type="paired" label="Collection of reads" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
72 </when>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
73 </conditional>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
74 </when>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
75 </conditional>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
76 <param argument="--bias" type="boolean" truevalue="--bias" falsevalue="" label="Perform sequence based bias correction" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
77 <param name="bootstrap_samples" argument="--bootstrap-samples" type="integer" value="0" label="Number of bootstrap samples" help="default: 0" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
78 <param argument="--seed" type="integer" value="42" label="Seed for the bootstrap sampling" help="default: 42" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
79 <param argument="--fusion" type="boolean" truevalue="--fusion" falsevalue="" label="Search for fusions" help="for Pizzly" />
5
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
80 <param name="lib_type" type="select" label="Library strandness information">
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
81 <option value="">Unstranded</option>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
82 <option value="--fr-stranded">Strand specific reads, first read forward</option>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
83 <option value="--rf-stranded">Strand specific reads, first read reverse</option>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
84 </param>
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
85 <param argument="--pseudobam" type="boolean" truevalue="--pseudobam" falsevalue="" label="Output pseudoalignments in BAM format" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
86 </inputs>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
87 <outputs>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
88 <data format="h5" name="abundance_h5" from_work_dir="abundance.h5" label="${tool.name} on ${on_string}: Abundances (HDF5)" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
89 <data format="tabular" name="abundance_tab" from_work_dir="abundance.tsv" label="${tool.name} on ${on_string}: Abundances (tabular)" />
3
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
90 <data format="bam" name="pseudobam_output" from_work_dir="abundance.txt" label="${tool.name} on ${on_string}: Pseudoalignments">
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
91 <filter>pseudobam</filter>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
92 </data>
3
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
93 <data format="tabular" name="fusion_output" from_work_dir="fusion.txt" label="${tool.name} on ${on_string}: Pizzly input (tabular)">
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
94 <filter>fusion</filter>
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
95 </data>
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
96 </outputs>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
97 <tests>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
98 <test>
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
99 <param name="reference_transcriptome_source" value="history" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
100 <param name="reference" ftype="fasta" value="mm10_chrM.fa" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
101 <param name="single_paired_selector" value="paired" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
102 <param name="collection_selector" value="datasets" />
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
103 <param name="forward" ftype="fastq" value="mm10_chrM-1.f.fq" />
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
104 <param name="reverse" ftype="fastq" value="mm10_chrM-1.r.fq" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
105 <output name="abundance_tab" file="kallisto_quant_out1.tab" ftype="tabular" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
106 </test>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
107 <test>
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
108 <param name="reference_transcriptome_source" value="history" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
109 <param name="reference" ftype="fasta" value="mm10_chrM.fa" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
110 <param name="single_paired_selector" value="paired" />
5
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
111 <param name="collection_selector" value="datasets" />
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
112 <param name="forward" ftype="fastq" value="mm10_chrM-1.f.fq" />
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
113 <param name="reverse" ftype="fastq" value="mm10_chrM-1.r.fq" />
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
114 <param name="lib_type" value="--fr-stranded"/>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
115 <output name="abundance_tab" >
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
116 <assert_contents>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
117 <has_text_matching expression="chrM\t16299\t15804.2\t37\t1e\+06" />
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
118 </assert_contents>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
119 </output>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
120 </test>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
121 <test>
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
122 <param name="reference_transcriptome_source" value="history" />
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
123 <param name="reference" ftype="fasta" value="mm10_chrM.fa" />
782e6a3b0510 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 4364e7d61b72e12afb7ef294955b1c1e57f757b0
iuc
parents: 4
diff changeset
124 <param name="single_paired_selector" value="paired" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
125 <param name="collection_selector" value="collection" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
126 <param name="reads">
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
127 <collection type="paired">
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
128 <element name="forward" value="mm10_chrM-1.f.fq" />
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
129 <element name="reverse" value="mm10_chrM-1.r.fq" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
130 </collection>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
131 </param>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
132 <output name="abundance_tab" file="kallisto_quant_out2.tab" ftype="tabular" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
133 </test>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
134 <test>
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
135 <param name="reference_transcriptome_source" value="history" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
136 <param name="reference" ftype="fasta" value="mm10_chrM.fa" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
137 <param name="single_paired_selector" value="single" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
138 <param name="collection_selector" value="collection" />
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
139 <param name="reads" ftype="fastq" value="mm10_chrM-1.f.fq" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
140 <output name="abundance_tab" file="kallisto_quant_out3.tab" ftype="tabular" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
141 </test>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
142 <test>
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
143 <param name="reference_transcriptome_source" value="history" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
144 <param name="reference" ftype="fasta" value="felCat8_chrM.fa" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
145 <param name="single_paired_selector" value="paired" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
146 <param name="collection_selector" value="datasets" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
147 <param name="pseudobam" value="true" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
148 <param name="forward" ftype="fastq" value="felCat8_chrM_F.fq" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
149 <param name="reverse" ftype="fastq" value="felCat8_chrM_R.fq" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
150 <output name="abundance_tab" file="kallisto_quant_out4.tab" ftype="tabular" />
8
90e937ec7df8 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c657f8cc0308cd70b26e3b111e5d8008901cda24"
iuc
parents: 6
diff changeset
151 <output name="pseudobam_output" file="kallisto_quant_out4.bam" ftype="bam" lines_diff="2"/>
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
152 </test>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
153 <test>
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
154 <param name="reference_transcriptome_source" value="cached" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
155 <param name="single_paired_selector" value="paired" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
156 <param name="collection_selector" value="datasets" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
157 <param name="pseudobam" value="true" />
1
7f698e0094e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c695bedd2174ac3a0e2f4c0b1f982a9e047a5302
iuc
parents: 0
diff changeset
158 <param name="forward" ftype="fastq" dbkey="sacCer2" value="sacCer2_chrM_F.fq.gz" />
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
159 <param name="reverse" ftype="fastq" dbkey="sacCer2" value="sacCer2_chrM_R.fq" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
160 <output name="abundance_tab" file="kallisto_quant_out5.tab" ftype="tabular" />
8
90e937ec7df8 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit c657f8cc0308cd70b26e3b111e5d8008901cda24"
iuc
parents: 6
diff changeset
161 <output name="pseudobam_output" file="kallisto_quant_out5.bam" ftype="bam" lines_diff="2"/>
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
162 </test>
3
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
163 <test>
4
22c498dc4bc6 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 011de86c970114d5ae22f76e9ee8e2d86c190063
iuc
parents: 3
diff changeset
164 <param name="reference_transcriptome_source" value="history" />
3
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
165 <param name="reference" ftype="fasta" value="hg38_transcripts.fa" />
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
166 <param name="single_paired_selector" value="paired" />
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
167 <param name="collection_selector" value="datasets" />
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
168 <param name="fusion" value="true" />
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
169 <param name="forward" ftype="fastq" dbkey="hg38" value="hg38_F.fq.gz" />
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
170 <param name="reverse" ftype="fastq" dbkey="hg38" value="hg38_R.fq.gz" />
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
171 <output name="fusion_output" file="fusion.txt" ftype="tabular" />
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
172 </test>
da068c8ea6d8 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit da0d5249fc7bd787ace5dac67bf273891756f324
iuc
parents: 1
diff changeset
173
0
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
174 </tests>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
175 <help>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
176 <![CDATA[
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
177 kallisto is a program for quantifying abundances of transcripts from RNA-Seq data, or more generally of target sequences using high-throughput sequencing reads. It is based on the novel idea of pseudoalignment for rapidly determining the compatibility of reads with targets, without the need for alignment. On benchmarks with standard RNA-Seq data, kallisto can quantify 30 million human reads in less than 3 minutes on a Mac desktop computer using only the read sequences and a transcriptome index that itself takes less than 10 minutes to build. Pseudoalignment of reads preserves the key information needed for quantification, and kallisto is therefore not only fast, but also as accurate as existing quantification tools. In fact, because the pseudoalignment procedure is robust to errors in the reads, in many benchmarks kallisto significantly outperforms existing tools.
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
178 ]]>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
179 </help>
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
180 <expand macro="citations" />
16c923816e87 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit 3b54163c4f7daff76fcc589c4a9057bb03904380
iuc
parents:
diff changeset
181 </tool>