Mercurial > repos > simon-gladman > phyloseq_nmds
annotate README.txt @ 3:5a2bda9b28c5 draft
New version 1.22.3.2.
| author | simon-gladman |
|---|---|
| date | Mon, 30 Jul 2018 21:06:56 -0400 |
| parents | 20adf95eb758 |
| children |
| rev | line source |
|---|---|
|
2
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
1 # Phloseq_NMDS |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
2 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
3 A Galaxy tool to produce NMDS plots using Phyloseq from either a BIOM1 file or 2 input tables. |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
4 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
5 Currently produces the plots embedded in a html file for output with links to a PDF file. |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
6 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
7 Requires: |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
8 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
9 Phyloseq 1.22.3 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
10 r-getopt 1.20.0 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
11 ghostscript 9.18 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
12 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
13 |
| 0 | 14 ## Run phyloseq_nmds.R with three input files |
| 15 Rscript phyloseq_nmds.R --otu_table=GP_OTU_TABLE.txt --tax_table=GP_TAX_TABLE.txt --meta_table=GP_SAMPLE_TABLE.txt --method="bray" --kingdom=2 --cutoff=5 --category=6 --outdir=/outputdir --htmlfile=test.html | |
| 16 | |
| 17 ## Run phyloseq_nmds.R with biom file | |
|
2
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
18 Rscript phyloseq_nmds.R --biom=GP.biom --subset=6 --method=NMDS --distance=bray --kingdom=Phylum --cutoff=5 --keep=5 --outdir=/outputdir --htmlfile=biom_out.html |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
19 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
20 Version history: |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
21 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
22 XML Wrapper: |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
23 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
24 Alpha version by Michael Thang of QFAB, Australia. |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
25 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
26 1.22.3.1: Simon Gladman, Melbourne Bioinformatics |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
27 * Incorporated tests |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
28 * Requirements |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
29 * Version statement |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
30 * Citations |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
31 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
32 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
33 R Script: phyloseq_nmds.R |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
34 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
35 0.1.0: |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
36 * Original version |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
37 |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
38 0.1.1: |
|
20adf95eb758
Updated phyloseq_nmds.xml to allow for new datatype.
simon-gladman
parents:
0
diff
changeset
|
39 * Added extra BIOM import functionality so it doesn't solely rely on phyloseq's internal importer. |
