[go: up one dir, main page]

File: README

package info (click to toggle)
cctools 9.9-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 44,624 kB
  • sloc: ansic: 192,539; python: 20,827; cpp: 20,199; sh: 11,719; perl: 4,106; xml: 3,688; makefile: 1,224
file content (27 lines) | stat: -rw-r--r-- 1,071 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
The wq_bwa program aligns sequences of genomes listed in a fastq file using
the Burrows-Wheeler Aligner. It aligns by partitioning the file into pieces
containing one or more sequences and running BWA to align them individually.
The program uses the Work Queue framework for distributed execution.

To run:

1. Install CCTools.
2. Install BWA and all its required dependencies. BWA can be download from:
http://bio-bwa.sourceforge.net
3. Run './wq_bwa <REFERENCE_FILE> <FASTQ_FILE>' to align sequences in <FASTQ_FILE>.
4. Start workers:
work_queue_worker -d all <HOSTNAME> <PORT>
where <HOSTNAME> is the name of the host on which the manager is running
	  <PORT> is the port number on which the manager is listening.

Alternatively, you can also specify a project name for the manager and use that
to start workers:

1. ./wq_bwa <REFERENCE_FILE> <FASTQ_FILE> -N WQBWA
2. work_queue_worker -d all -N WQBWA

For listing the command-line options, do:
./wq_bwa -h

When the alignment completes, you will find the output files in the
same directory from where wq_bwa was run.