annotate distance.xml @ 5:b69e898b8109 draft

planemo upload for repository https://github.com/phac-nml/quasitools commit e30c0687f755a46c5b3bd265a1478a1abf5dc9f1
author nml
date Fri, 24 Aug 2018 16:50:28 -0400
parents 8cdffc02d2e2
children 9fb9fed71486
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5
b69e898b8109 planemo upload for repository https://github.com/phac-nml/quasitools commit e30c0687f755a46c5b3bd265a1478a1abf5dc9f1
nml
parents: 4
diff changeset
1 <tool id="distance" name="Quasispecies Distance" version="0.4.2">
4
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
2 <description>Calculate the evolutionary distance between viral quasispecies.</description>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
3 <requirements>
5
b69e898b8109 planemo upload for repository https://github.com/phac-nml/quasitools commit e30c0687f755a46c5b3bd265a1478a1abf5dc9f1
nml
parents: 4
diff changeset
4 <requirement type="package" version="0.4.2">quasitools</requirement>
4
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
5 </requirements>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
6 <command detect_errors="exit_code"><![CDATA[
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
7
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
8 #for $bam_file in $bam_files
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
9 ln -s $bam_file '${bam_file.name}' &&
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
10 ln -s $bam_file.metadata.bam_index '${bam_file.name}.bai' &&
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
11 #end for
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
12
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
13 quasitools distance $ref_file
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
14
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
15 #for $bam_file in $bam_files
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
16 '${bam_file.name}'
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
17 #end for
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
18
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
19 -o matrix.csv
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
20
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
21 $normalize
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
22
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
23 #if $low_coverage.coverage_selector == 'keep':
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
24 -k
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
25 #else if $low_coverage.coverage_selector == 'remove':
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
26 -r
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
27 #else if $low_coverage.coverage_selector == 'truncate':
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
28 -t
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
29 #end if
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
30
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
31 #if $select_range.manual_input == 'select_range':
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
32 -s $select_range.start
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
33 -e $select_range.end
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
34 #end if
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
35
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
36 $output_similarity
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
37
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
38 ]]></command>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
39 <inputs>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
40 <param name="ref_file" type="data" format="fasta" optional="false" label="Reference file" />
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
41 <param name="bam_files" type="data" format="bam" optional="false" multiple="true" label="BAM files" min="2" help="At least two BAM files are required to perform quasispecies distance comparison."/>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
42 <param name="normalize" type="boolean" truevalue="-n" falsevalue="-dn" checked="True" label="Normalize pileups" help="Normalize read count data so that the read counts per 4-tuple (A, C, T, G) sum to one."/>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
43 <param name="output_similarity" type="boolean" truevalue="-os" falsevalue="-od" checked="False" label="Output cosine similarity instead of angular cosine distance." help="Cosine similarity is not a distance metric." />
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
44 <conditional name="low_coverage">
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
45 <param name="coverage_selector" type="select" label="Choose how to treat zero coverage positions.">
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
46 <option value="remove" selected = "true">Remove all zero coverage positions.</option>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
47 <option value="keep">Keep all zero coverage positions.</option>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
48 <option value="truncate">Truncate zero coverage positions at start and end of pileup.</option>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
49 </param>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
50 <when value="remove">
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
51 </when>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
52 <when value="keep">
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
53 </when>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
54 <when value="truncate">
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
55 </when>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
56 </conditional>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
57 <conditional name="select_range">
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
58 <param name="manual_input" type="select" label="Select pileup range." help="Currently only supports selection of custom start and end position for one single reference.">
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
59 <option value="keep_range" selected = "true">Use original pileup for distance calculation.</option>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
60 <option value="select_range">Manually select pileup's start and end position for distance calculation.</option>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
61 </param>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
62 <when value="select_range">
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
63 <param name="start" type="integer" optional="false" min="1" value="1" label="Select one-indexed start base position." help="Positions before start position will be ignored in the distance calculation." />
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
64 <param name="end" type="integer" optional="false" min="1" value="1" label="Select one-indexed end base position." help="Positions after end position will be ignored in the distance calculation." />
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
65 </when>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
66 <when value="keep_range">
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
67 </when>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
68 </conditional>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
69 </inputs>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
70 <outputs>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
71 <data format="csv" name="matrix" from_work_dir="matrix.csv" />
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
72 </outputs>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
73 <tests>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
74 <test>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
75 <param name="ref_file" value="hxb2_pol.fas" />
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
76 <param name="bam_files" value="quasi1.bam,quasi2.bam" />
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
77 <param name="normalize" value="-n" />
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
78 <param name="coverage_selector" value="truncate" />
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
79 <param name="manual_input" value="keep_range" />
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
80 <param name="output_similarity" value="-od" />
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
81 <output name="matrix" ftype="csv" >
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
82 <assert_contents>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
83 <has_text_matching expression="Quasispecies"/>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
84 </assert_contents>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
85 </output>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
86 </test>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
87 </tests>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
88 <help><![CDATA[
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
89
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
90 Quasispecies Distance
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
91 =====================
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
92
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
93 Determines the evolutionary distance between viral quasispecies.
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
94 Uses the angular cosine distance function by default.
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
95
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
96 ------
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
97 Inputs
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
98 ------
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
99
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
100 1. FASTA Consensus file
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
101 2. Two or more BAM files (otherwise tool will throw an error)
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
102
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
103 ----------
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
104 Parameters
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
105 ----------
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
106 1. Normalize pileup (True or False)
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
107 2. Select custom start and end position. Currently only supports selection of custom start and end position for one single reference.
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
108 3. Choose how to treat zero coverage regions (keep, remove all, or truncate)
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
109
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
110 -------
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
111 Outputs
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
112 -------
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
113
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
114 CSV containing distance matrix.
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
115
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
116 ]]></help>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
117 <citations>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
118 <citation type="bibtex">
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
119 @misc{GitHubquasitoolsdistance,
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
120 title = {quasitools distance},
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
121 publisher = {phac-nml},
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
122 journal = {GitHub repository},
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
123 url = {https://github.com/phac-nml/quasitools},
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
124 }
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
125 </citation>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
126 </citations>
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
127 </tool>