Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Latest commit

 

History

History
74 lines (50 loc) · 2.72 KB

parallel_blast.rst

File metadata and controls

74 lines (50 loc) · 2.72 KB

parallel_blast.py

parallel_blast.py -- Parallel BLAST

Description:

This script for performing blast while making use of multicore/multiprocessor environments to perform analyses in parallel.

Usage: parallel_blast.py [options]

Input Arguments:

Note

[REQUIRED]

-i, --infile_path

Path of sequences to use as queries [REQUIRED]

-r, --refseqs_path

Path to fasta sequences to search against or name of pre-formatted BLAST database [REQUIRED]

-o, --output_dir

Name of output directory for blast jobs [REQUIRED]

[OPTIONAL]

-c, --disable_low_complexity_filter

Disable filtering of low-complexity sequences (i.e., -F F is passed to blast) [default: False]

-e, --e_value

E-value threshold for blasts [default: 1e-30]

-n, --num_hits

Number of hits per query for blast results [default: 1]

-w, --word_size

Word size for blast searches [default: 30]

-D, --suppress_format_blastdb

Supress format of blastdb [default: False]

-a, --blastmat_dir

Full path to directory containing blastmat file [default: /Applications/blast-2.2.22/data/]

-O, --jobs_to_start

Number of jobs to start [default: 4]

-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 script (defined in qiime_config) [default: 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]

-Z, --seconds_to_sleep

Number of seconds to sleep between checks for run completion when polling runs [default: 1]

Output:

Example:

BLAST $PWD/inseqs.fasta (-i) against a blast database created from $PWD/refseqs.fasta (-r). Store the results in $PWD/blast_out/ (-o). ALWAYS SPECIFY ABSOLUTE FILE PATHS (absolute path represented here as $PWD, but will generally look something like /home/ubuntu/my_analysis/).

parallel_blast.py -i $PWD/inseqs.fasta -r $PWD/refseqs.fasta -o $PWD/blast_out/ -e 0.001