annotate distance.xml @ 8:9def47f3c1e4 draft

planemo upload for repository https://github.com/phac-nml/quasitools commit 940b463cac33438233bc7a8a1695ca6d34b31a35
author nml
date Tue, 06 Aug 2019 08:50:28 -0400
parents dcd43b402eb3
children 18aad692772a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8
9def47f3c1e4 planemo upload for repository https://github.com/phac-nml/quasitools commit 940b463cac33438233bc7a8a1695ca6d34b31a35
nml
parents: 7
diff changeset
1 <tool id="distance" name="Quasispecies Distance" version="0.7.0">
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>
8
9def47f3c1e4 planemo upload for repository https://github.com/phac-nml/quasitools commit 940b463cac33438233bc7a8a1695ca6d34b31a35
nml
parents: 7
diff changeset
4 <requirement type="package" version="0.7.0">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
6
9fb9fed71486 planemo upload for repository https://github.com/phac-nml/quasitools commit 59e7cd4a6042f14a07488489a1dc3b05ee3bc15c
nml
parents: 5
diff changeset
93 This tool determines the cosine relatedness between viral quasispecies, reporting either angular cosine distance or cosine similarity as measures of relatedness. These measures of relatedness should be understood as approximations for evolutionary distance and might be useful for performing clustering.
4
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
94
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 Inputs
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
97 ------
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
98
6
9fb9fed71486 planemo upload for repository https://github.com/phac-nml/quasitools commit 59e7cd4a6042f14a07488489a1dc3b05ee3bc15c
nml
parents: 5
diff changeset
99 1. A reference FASTA.
9fb9fed71486 planemo upload for repository https://github.com/phac-nml/quasitools commit 59e7cd4a6042f14a07488489a1dc3b05ee3bc15c
nml
parents: 5
diff changeset
100 2. At least two BAM files generated in coordination with the above reference.
4
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
101
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 Parameters
8cdffc02d2e2 planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff changeset
104 ----------
6
9fb9fed71486 planemo upload for repository https://github.com/phac-nml/quasitools commit 59e7cd4a6042f14a07488489a1dc3b05ee3bc15c
nml
parents: 5
diff changeset
105
9fb9fed71486 planemo upload for repository https://github.com/phac-nml/quasitools commit 59e7cd4a6042f14a07488489a1dc3b05ee3bc15c
nml
parents: 5
diff changeset
106 1. Normalize pileup (True or False).
4
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.
6
9fb9fed71486 planemo upload for repository https://github.com/phac-nml/quasitools commit 59e7cd4a6042f14a07488489a1dc3b05ee3bc15c
nml
parents: 5
diff changeset
108 3. Choose how to treat zero coverage regions (keep, remove all, or truncate).
4
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
6
9fb9fed71486 planemo upload for repository https://github.com/phac-nml/quasitools commit 59e7cd4a6042f14a07488489a1dc3b05ee3bc15c
nml
parents: 5
diff changeset
114 A CSV file containing a matrix of similarities or distances, as requested by the user.
4
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>