Mercurial > repos > iuc > instrain_compare
annotate instrain_compare.xml @ 3:92a7945118a9 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/instrain commit aa7c7a35834f36dad6e72d5f54089a578be60731
author | iuc |
---|---|
date | Thu, 02 Nov 2023 14:59:48 +0000 |
parents | dff92aac9f75 |
children |
rev | line source |
---|---|
0
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
1 <tool id="instrain_compare" name="InStrain Compare" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
2 <description>Compares multiple inStrain profiles (popANI, coverage_overlap, etc.) </description> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
3 <macros> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
4 <import>macros.xml</import> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
5 </macros> |
3
92a7945118a9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/instrain commit aa7c7a35834f36dad6e72d5f54089a578be60731
iuc
parents:
0
diff
changeset
|
6 <expand macro="biotools"/> |
0
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
7 <expand macro="requirements"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
8 <version_command>inStrain compare --version</version_command> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
9 <command detect_errors="exit_code"><![CDATA[ |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
10 #if $stb |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
11 ln -s '$stb' 'stb_file.stb' && |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
12 #end if |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
13 #if $other.genome |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
14 ln -s '$other.genome' 'genome_file.stb' && |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
15 #end if |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
16 #for $i, $s in enumerate($input_is) |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
17 #if $s |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
18 input_count=$i |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
19 mkdir -p $i-input.IS && |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
20 unzip '$s' -d '$i-input.IS/' && |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
21 #end if |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
22 #end for |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
23 inStrain compare |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
24 --input |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
25 #for $i, $s in enumerate($input_is) |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
26 #if $s |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
27 '$i-input.IS' |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
28 #end if |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
29 #end for |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
30 --output 'output.IS.COMPARE' |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
31 --processes "\${GALAXY_SLOTS:-6}" |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
32 #if $stb |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
33 --stb 'stb_file.stb' |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
34 #end if |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
35 --min_cov $variant_calling.min_cov |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
36 --min_freq $variant_calling.min_freq |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
37 --fdr $variant_calling.fdr |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
38 $database.database_mode |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
39 --breadth $database.breadth |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
40 #if $other.scaffolds |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
41 --scaffolds '$other.scaffolds' |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
42 #end if |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
43 #if $other.genome |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
44 --genome 'genome_file.stb' |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
45 #end if |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
46 $other.store_coverage_overlap |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
47 $other.store_mismatch_locations |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
48 $other.include_self_comparisons |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
49 $other.skip_plot_generation |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
50 --group_length $other.group_length |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
51 --ani_threshold $genome_clustering.ani_threshold |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
52 --coverage_treshold $genome_clustering.coverage_treshold |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
53 --clusterAlg '$genome_clustering.clusterAlg' |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
54 ]]></command> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
55 <inputs> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
56 <param name="input_is" type="data" format="zip" multiple="true" label="inStrain Profile IS folder" help=" The Zip files for the IS profiles outputs you want to compare"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
57 <param argument="--stb" type="data" format="tabular" optional="true" label="Scaffold to bin" help="This can be a file with each line listing a scaffold and a bin name, tab-seperated. This can also be a space-seperated list of .fasta files, with one genome per .fasta file. If nothing is provided, all scaffolds will be treated as belonging to the same genome"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
58 <section name="variant_calling" title="Variant Calling Options" expanded="true"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
59 <param argument="--min_cov" type="integer" value="5" label=" Minimum coverage to call an variant"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
60 <param argument="--min_freq" type="float" value="0.05" label="Minimum SNP frequency to confirm a SNV" help="Both this AND the FDR snp count cutoff must be true to call a SNP."/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
61 <param argument="--fdr" type="float" value="1e-06" min="0" max="1" help="SNP false discovery rate- based on simulation data with a 0.1 percent error rate (Q30)"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
62 </section> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
63 <section name="database" title="Database Mode Parameters" expanded="true"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
64 <param argument="--database_mode" type="boolean" truevalue="--debugdatabase_mode" falsevalue="" checked="false" label="Automatically determine which genomes are present in each Profile and only compare scaffolds from those genomes." help="All profiles must have run Profile with the same .stb"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
65 <param argument="--breadth" type="float" value="0.5" label="Minimum breadth_minCov required to count a genome present"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
66 </section> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
67 <section name="other" title="Other Options" expanded="true"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
68 <param argument="--scaffolds" type="data" format="fasta" optional="true" label="Location to a list of scaffolds to compare. You can also make this a .fasta file and it will load the scaffold names"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
69 <param argument="--genome" type="data" format="tabular" optional="true" label="Run scaffolds belonging to this single genome only. Must provide an .stb file"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
70 <param argument="--store_coverage_overlap" type="boolean" truevalue="--store_coverage_overlap" falsevalue="" checked="false" label="Store coverage overlap on an mm level"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
71 <param argument="--store_mismatch_locations" type="boolean" truevalue="--store_mismatch_locations" falsevalue="" checked="false" label="Store the locations of SNPs"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
72 <param argument="--include_self_comparisons" type="boolean" truevalue="--include_self_comparisons" falsevalue="" checked="false" label="Compare IS profiles against themself"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
73 <param argument="--skip_plot_generation" type="boolean" truevalue="--skip_plot_generation" falsevalue="" checked="false" label="Dont create plots at the end of the run"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
74 <param argument="--group_length" type="integer" value="10000000" label="How many bp to compare simultaneously" help="higher will use more RAM and run more quickly"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
75 </section> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
76 <section name="genome_clustering" title="Genome Clustering Options" expanded="true"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
77 <param argument="--ani_threshold" type="float" value="0.99999" label="popANI threshold to cluster genomes at" help="Must provide .stb file to do so"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
78 <param argument="--coverage_treshold" type="float" value="0.1" label="Minimum percent_genome_compared for a genome comparison to count" help="if below the popANI will be set to 0"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
79 <param argument="--clusterAlg" type="select" label="Algorithm used to cluster genomes"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
80 <option value="average" selected="true">Average</option> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
81 <option value="single">Single</option> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
82 <option value="ward">Ward</option> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
83 <option value="complete">complete</option> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
84 <option value="centroid">centroid</option> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
85 <option value="weighted">weighted</option> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
86 <option value="median">median</option> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
87 </param> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
88 </section> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
89 </inputs> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
90 <outputs> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
91 <data name="comparisonsTable" format="tabular" from_work_dir="output.IS.COMPARE/output/output.IS.COMPARE_comparisonsTable.tsv" label="Comparisons Table: Summarizes the differences between two inStrain profiles on a scaffold by scaffold level" /> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
92 <data name="pairwise_SNP_locations" format="tabular" from_work_dir="output.IS.COMPARE/output/output.IS.COMPARE_pairwise_SNP_locations.tsv" label="Pairwise SNP locations: Lists the locations of all differences between profiles." /> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
93 <data name="genomeWide_compare" format="tabular" from_work_dir="output.IS.COMPARE/output/output.IS.COMPARE_genomeWide_compare.tsv" label="Genome Wide compare: A genome-level summary of the differences detected by inStrain compare." /> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
94 <data format="tabular" name="strain_clusters" from_work_dir="output.IS.COMPARE/output/output.IS.COMPARE_strain_clusters.tsv" label="Strain clusters: Generate strain-level clusters" /> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
95 <data format="pdf" name="inStrainCompare_dendrograms" from_work_dir="output.IS.COMPARE/figures/output.IS.COMPARE_inStrainCompare_dendrograms.pdf" label="inStrain Compare dendrograms: genomeWide microdiveristy metrics" /> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
96 </outputs> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
97 <tests> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
98 <test expect_num_outputs="5"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
99 <param name="stb" value="N5_271_010G1.maxbin2.stb"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
100 <param name="input_is" value="N5_271_010G1_scaffold_min1000.fa-vs-N5_271_010G1.IS.zip,N5_271_010G1_scaffold_min1000.fa-vs-N5_271_010G2.IS.zip"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
101 <section name="variant_calling"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
102 <param name="min_cov" value="5"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
103 <param name="min_freq" value="0.05"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
104 <param name="fdr" value="1e-06"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
105 </section> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
106 <section name="database"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
107 <param name="database_mode" value="false"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
108 <param name="breadth" value="0.5"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
109 </section> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
110 <section name="other"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
111 <param name="store_coverage_overlap" value="false"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
112 <param name="store_mismatch_locations" value="false"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
113 <param name="include_self_comparisons" value="false"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
114 <param name="skip_plot_generation" value="false"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
115 <param name="group_length" value="10000000"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
116 </section> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
117 <section name="genome_clustering"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
118 <param name="ani_threshold" value="0.99999"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
119 <param name="coverage_treshold" value="0.1"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
120 <param name="clusterAlg" value="average"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
121 </section> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
122 <output name="comparisonsTable"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
123 <assert_contents> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
124 <has_text text="N5_271_010G1_scaffold_73"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
125 <has_n_lines n="168"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
126 <has_n_columns n="11"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
127 </assert_contents> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
128 </output> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
129 <output name="pairwise_SNP_locations"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
130 <assert_contents> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
131 <has_n_lines n="0"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
132 </assert_contents> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
133 </output> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
134 <output name="genomeWide_compare"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
135 <assert_contents> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
136 <has_text text="name1"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
137 <has_n_lines n="3"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
138 <has_n_columns n="10"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
139 </assert_contents> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
140 </output> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
141 <output name="strain_clusters"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
142 <assert_contents> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
143 <has_text text="1_1"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
144 <has_n_lines n="5"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
145 <has_n_columns n="3"/> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
146 </assert_contents> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
147 </output> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
148 <output name="inStrainCompare_dendrograms"> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
149 <assert_contents> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
150 <has_size value="384512" delta="10000" /> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
151 </assert_contents> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
152 </output> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
153 </test> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
154 </tests> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
155 <help><![CDATA[ |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
156 @HELP_HEADER@ |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
157 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
158 Compare |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
159 ======= |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
160 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
161 is part of the inStrain module that provides the ability to compare multiple inStrain profiles (created by running inStrain profile). |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
162 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
163 Note |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
164 ==== |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
165 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
166 inStrain can only compare inStrain profiles that have been mapped to the same .fasta file |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
167 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
168 inStrain compare does pairwise comparisons between each input inStrain profile. For each pair, a series of steps are undertaken: |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
169 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
170 1. All positions in which both IS_profile objects have at least min_cov coverage (5x by default) are identified. This information can be stored in the output by using the flag –store_coverage_overlap, but due to it’s size, it’s not stored by default. |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
171 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
172 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
173 2. Each position identified in step 1 is compared to calculate both conANI and popANI. The way that it compares positions is by testing whether the consensus base in sample 1 is detected at all in sample 2 and vice-versa. Detection of an allele in a sample is based on that allele being above the set -min_freq and -fdr. All detected differences between each pair of samples can be reported if the flag –store_mismatch_locations is set. |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
174 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
175 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
176 3. The coverage overlap and the average nucleotide identity for each scaffold is reported. For details on how this is done. |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
177 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
178 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
179 Inputs |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
180 ====== |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
181 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
182 Multiple inStrain profiles IS outputs (zip files), all mapped to the same .fasta file |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
183 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
184 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
185 Outputs |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
186 ======= |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
187 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
188 1. comparisonsTable.tsv |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
189 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
190 Summarizes the differences between two inStrain profiles on a scaffold by scaffold level |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
191 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
192 2. pairwise_SNP_locations.tsv |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
193 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
194 Lists the locations of all differences between profiles. Because it’s a big file, this will only be created is you include the flag --store_mismatch_locations in your inStrain compare command. |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
195 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
196 3. genomeWide_compare.tsv |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
197 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
198 A genome-level summary of the differences detected by inStrain compare. Generated by running inStrain genome_wide on the results of inStrain compare |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
199 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
200 4. strain_clusters.tsv |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
201 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
202 The result of clustering the pairwise comparison data provided in genomeWide_compare.tsv to generate strain-level clusters. Performed using hierarchical clustering in the same manner as the program dRep |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
203 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
204 5. Compare dendrograms (PDF) figure/plot |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
205 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
206 A dendrogram comparing all samples based on popANI and based on shared_bases. |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
207 |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
208 ]]></help> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
209 <citations> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
210 <citation type="doi">10.1101/2020.01.22.915579</citation> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
211 </citations> |
dff92aac9f75
"planemo upload for repository https://github.com/MrOlm/inStrain commit e6eae71231e551c08aa96afc9f15b8ba87676101"
iuc
parents:
diff
changeset
|
212 </tool> |