Mercurial > repos > nml > quasitools
annotate distance.xml @ 9:18aad692772a draft default tip
planemo upload for repository https://github.com/phac-nml/quasitools commit 5a9e4c9a582828654893166caf20576f5e0c418e
author | nml |
---|---|
date | Mon, 20 Jun 2022 20:06:36 +0000 |
parents | 9def47f3c1e4 |
children |
rev | line source |
---|---|
9
18aad692772a
planemo upload for repository https://github.com/phac-nml/quasitools commit 5a9e4c9a582828654893166caf20576f5e0c418e
nml
parents:
8
diff
changeset
|
1 <tool id="distance" name="Quasispecies Distance" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@"> |
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> |
9
18aad692772a
planemo upload for repository https://github.com/phac-nml/quasitools commit 5a9e4c9a582828654893166caf20576f5e0c418e
nml
parents:
8
diff
changeset
|
3 <macros> |
18aad692772a
planemo upload for repository https://github.com/phac-nml/quasitools commit 5a9e4c9a582828654893166caf20576f5e0c418e
nml
parents:
8
diff
changeset
|
4 <import>macros.xml</import> |
18aad692772a
planemo upload for repository https://github.com/phac-nml/quasitools commit 5a9e4c9a582828654893166caf20576f5e0c418e
nml
parents:
8
diff
changeset
|
5 </macros> |
18aad692772a
planemo upload for repository https://github.com/phac-nml/quasitools commit 5a9e4c9a582828654893166caf20576f5e0c418e
nml
parents:
8
diff
changeset
|
6 <expand macro="requirements"/> |
4
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
7 <command detect_errors="exit_code"><![CDATA[ |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
8 |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
9 #for $bam_file in $bam_files |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
10 ln -s $bam_file '${bam_file.name}' && |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
11 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
|
12 #end for |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
13 |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
14 quasitools distance $ref_file |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
15 |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
16 #for $bam_file in $bam_files |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
17 '${bam_file.name}' |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
18 #end for |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
19 |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
20 -o matrix.csv |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
21 |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
22 $normalize |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
23 |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
24 #if $low_coverage.coverage_selector == 'keep': |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
25 -k |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
26 #else if $low_coverage.coverage_selector == 'remove': |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
27 -r |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
28 #else if $low_coverage.coverage_selector == 'truncate': |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
29 -t |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
30 #end if |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
31 |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
32 #if $select_range.manual_input == 'select_range': |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
33 -s $select_range.start |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
34 -e $select_range.end |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
35 #end if |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
36 |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
37 $output_similarity |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
38 |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
39 ]]></command> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
40 <inputs> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
41 <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
|
42 <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
|
43 <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
|
44 <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
|
45 <conditional name="low_coverage"> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
46 <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
|
47 <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
|
48 <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
|
49 <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
|
50 </param> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
51 <when value="remove"> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
52 </when> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
53 <when value="keep"> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
54 </when> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
55 <when value="truncate"> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
56 </when> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
57 </conditional> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
58 <conditional name="select_range"> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
59 <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
|
60 <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
|
61 <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
|
62 </param> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
63 <when value="select_range"> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
64 <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
|
65 <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
|
66 </when> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
67 <when value="keep_range"> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
68 </when> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
69 </conditional> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
70 </inputs> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
71 <outputs> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
72 <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
|
73 </outputs> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
74 <tests> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
75 <test> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
76 <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
|
77 <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
|
78 <param name="normalize" value="-n" /> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
79 <param name="coverage_selector" value="truncate" /> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
80 <param name="manual_input" value="keep_range" /> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
81 <param name="output_similarity" value="-od" /> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
82 <output name="matrix" ftype="csv" > |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
83 <assert_contents> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
84 <has_text_matching expression="Quasispecies"/> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
85 </assert_contents> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
86 </output> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
87 </test> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
88 </tests> |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
89 <help><![CDATA[ |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
90 |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
91 Quasispecies Distance |
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 |
6
9fb9fed71486
planemo upload for repository https://github.com/phac-nml/quasitools commit 59e7cd4a6042f14a07488489a1dc3b05ee3bc15c
nml
parents:
5
diff
changeset
|
94 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
|
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 |
6
9fb9fed71486
planemo upload for repository https://github.com/phac-nml/quasitools commit 59e7cd4a6042f14a07488489a1dc3b05ee3bc15c
nml
parents:
5
diff
changeset
|
100 1. A reference FASTA. |
9fb9fed71486
planemo upload for repository https://github.com/phac-nml/quasitools commit 59e7cd4a6042f14a07488489a1dc3b05ee3bc15c
nml
parents:
5
diff
changeset
|
101 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
|
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 ---------- |
6
9fb9fed71486
planemo upload for repository https://github.com/phac-nml/quasitools commit 59e7cd4a6042f14a07488489a1dc3b05ee3bc15c
nml
parents:
5
diff
changeset
|
106 |
9fb9fed71486
planemo upload for repository https://github.com/phac-nml/quasitools commit 59e7cd4a6042f14a07488489a1dc3b05ee3bc15c
nml
parents:
5
diff
changeset
|
107 1. Normalize pileup (True or False). |
4
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
108 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
|
109 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
|
110 |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
111 ------- |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
112 Outputs |
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 |
6
9fb9fed71486
planemo upload for repository https://github.com/phac-nml/quasitools commit 59e7cd4a6042f14a07488489a1dc3b05ee3bc15c
nml
parents:
5
diff
changeset
|
115 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
|
116 |
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
117 ]]></help> |
9
18aad692772a
planemo upload for repository https://github.com/phac-nml/quasitools commit 5a9e4c9a582828654893166caf20576f5e0c418e
nml
parents:
8
diff
changeset
|
118 <expand macro="citations" /> |
4
8cdffc02d2e2
planemo upload for repository https://github.com/phac-nml/quasitools commit 19e0f266ee455b82432e2d7b987b35de8c7a14d5
nml
parents:
diff
changeset
|
119 </tool> |