sampledoc
News and Announcements »

parallel_beta_diversity.py – Parallel beta diversity

Description:

This script performs like the beta_diversity.py script, but is intended to make use of multicore/multiprocessor environments to perform analyses in parallel.

Usage: parallel_beta_diversity.py [options]

Input Arguments:

Note

[REQUIRED]

-i, --input_path
Input path, must be directory [REQUIRED]
-o, --output_path
Output path, must be directory [REQUIRED]
-m, --metrics
Metrics to use [REQUIRED]

[OPTIONAL]

-t, --tree_path
Path to newick tree file, required for phylogenetic metrics [default: None]
-N, --beta_diversity_fp
Full path to scripts/beta_diversity.py [default: /Users/jistombaugh/Dropbox/Qiime_work/scripts/beta_diversity.py]
-P, --poller_fp
Full path to qiime/parallel/poller.py [default: /Users/jistombaugh/Dropbox/Qiime_work/scripts/poller.py]
-R, --retain_temp_files
Retain temporary files after runs complete (useful for debugging) [default: False]
-S, --suppress_submit_jobs
Only split input and write commands file - don’t submit jobs [default: False]
-T, --poll_directly
Poll directly for job completion rather than running poller as a separate job. If -T is specified this script will not return until all jobs have completed. [default: False]
-U, --cluster_jobs_fp
Path to cluster_jobs.py script [default: /Users/jistombaugh/Dropbox/Qiime_work/scripts/start_parallel_jobs.py]
-W, --suppress_polling
Suppress polling of jobs and merging of results upon completion [default: False]
-X, --job_prefix
Job prefix [default: descriptive prefix + random chars]
-Y, --python_exe_fp
Full path to python executable [default: /opt/local/bin/python]
-Z, --seconds_to_sleep
Number of seconds to sleep between checks for run completion when polling runs [default: 60]
-O, --jobs_to_start
Number of jobs to start [default: 2]
-f, --full_tree
By default, we first compute the intersection of the tree with the otus present in the otu table. pass -f if you already have a minimal tree, and this script will run faster

Output:

The output of %prog is a folder containing text files, each a distance matrix between samples.

Example:

Apply the dist_unweighted_unifrac and the dist_weighted_unifrac metrics (-m) to all otu tables in /home/qiime_user/rare/ (-i) and write the resulting output files to /home/qiime_user/out/ (-o, will be created if it doesn’t exist). Use the tree file /home/qiime_user/rep_set.tre (-t) when necessary.

parallel_beta_diversity.py -i /home/qiime_user/rare/ -o /home/qiime_user/out -m dist_unweighted_unifrac,dist_weighted_unifrac -t /home/qiime_user/rep_set.tre

Site index


sampledoc