Skip to content

Commit

Permalink
Merge pull request #20 from VDBWRAIR/map_pipe_test
Browse files Browse the repository at this point in the history
Map pipe test
  • Loading branch information
averagehat committed Mar 9, 2016
2 parents 4d9246a + 96be45a commit 5f7e218
Show file tree
Hide file tree
Showing 11 changed files with 163 additions and 45 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ sudo: false
language: python
python:
- "2.7"
cache:
directories:
- .hypothesis
install:
# We do this conditionally because it saves us some downloading if the
# version is the same.
Expand All @@ -29,5 +32,6 @@ install:
script:
- nosetests --with-coverage --cover-erase --cover-package=bioframework
- pybot tests/*.robot
- tests/map_pipe.sh
after_success:
- coveralls
15 changes: 10 additions & 5 deletions jip_modules/bwa_index.jip
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,24 @@
# bwa index
#
# Usage:
# bwa_index -r <reference> [-o <output>]
# bwa_index <input> [-o <output>]
#
# Options:
# -r, --reference <reference> The fasta file to index
# -o, --output <output> Where to create the index
# [Default: Same path as reference argument]
# Help:
# <input> The reference filepath to index

#%begin init
options['output'].default = "${reference}.bwt"
options['output'].default = "${input|abs|name}.bwt"
#%end

#%begin validate
#%end

cp ${reference|abs} ${output|ext}
bwa index ${output|ext}
cmd="cp ${input|abs} ${output|ext}"
echo $cmd >&2
$cmd
cmd="bwa index ${output|ext}"
echo $cmd >&2
$cmd
12 changes: 8 additions & 4 deletions jip_modules/bwa_mem.jip
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,20 @@
# bwa mem
#
# Usage:
# bwa_mem -r <reference> -f <fastq>... [-p] [-o <output>]
# bwa_mem [<input>...] -r <reference> [-p] [-o <output>]
#
# Options:
# -r, --reference <reference> Fasta reference path
# -o, --output <output> Output path [default: stdout]
# -f, --fastq <fastq>... Fastq files to map to reference [default: stdin]
# -p, --interleaved Flag to specify interleaved input [default: False]
#
# Help:
# <input> Input fastq format

#%begin init
options['fastq'].streamable = True
options['input'].streamable = True
#%end

bwa mem ${interleaved|arg|else('')} ${reference} ${fastq|else("/dev/stdin")} ${output|arg(">")}
cmd="bwa mem ${interleaved|arg|else('')} ${reference|re('.bwt','')} ${input|else("/dev/stdin")} ${output|arg(">")}"
echo $cmd >&2
$cmd
18 changes: 17 additions & 1 deletion jip_modules/interleaved_index_filter.jip
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,27 @@
# Options:
# -o, --output=<output> Output files [default: stdout]
# -q, --minimum=<minimum> Minimum quality of the index file
# Any index qualities less than this are filtered
# Qualities that are greater than or equal are kept
# -1, --index1=<index1> Index file from MiSeq
# -2, --index2=<index2> Index file from MiSeq
#
# Help:
# <input> Interleaved fastq file
# <input> Interleaved fastq file or read from stdin
#
# Filters out reads based on their matching index inside of supplied index1 and index2
# fastq files.
# The identifiers in the index1 fastq file must match with reads inside of the forward
# reads in the input interleaved fastq.
# Similarily, the index2 fastq identifiers must match to reads inside the reverse
# reads in the input interleaved fastq.
#
# If either index is too low, both the forward and reverse will be filtered out
# to ensure that the interleaved output is kept intact.

#%begin init
options['input'].streamable = True
#%end

#%begin command python
from bioframework.index_filter import filter_on_index_quality_interleaved
Expand Down
2 changes: 0 additions & 2 deletions jip_modules/paired_to_interleave.jip
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
# paired_to_interleave [<input>...] [--out-format <out-format>] [-o <output>]
#
# Options:
# -f, --forward=<forward> The forward fastq input
# -r, --reverse=<reverse> The reverse fastq input
# -o, --output=<output> The interleaved output [default: stdout]
# --out-format=<outformat> The output format [default: fastq]
#
Expand Down
32 changes: 0 additions & 32 deletions jip_modules/simplepipe.jip

This file was deleted.

2 changes: 1 addition & 1 deletion jip_modules/trim_reads.jip
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
# Options:
# -p, --paired Indicates that the input is paired-interleave format otherwise
# the input is assumed to be unpaired fastq
# [Default: stdin]
# -o, --output=<output> Output fastq. If input was interleave, output will be as well
# [default: stdout]
# -t, --trim-n Trim N's from ends of reads
Expand All @@ -24,6 +23,7 @@
# Ex. -x -10 would remove 10 bases from the end
# Ex. -x 10 -10 would remove 10 bases from front and end
#%begin init
options['input'].streamable = True
#%end

#%begin validate
Expand Down
85 changes: 85 additions & 0 deletions tests/jip_modules/map_pipe.jip
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
#!/usr/bin/env jip
#
# Simple pipeline to run cutadapt, bwa index, bwa mem, samtools view
#
# Usage:
# simplepipe <input>... -r <reference> [--trimn] [--trimlq <trimlq>...] [--removebases <removebases>] [--indexqual <indexqual> --indexes <indexes>...] [-o <output>] [--interleave]
#
# Options:
# -r, --reference=<reference> Reference file to index and map to
# --trimn Flag to indicate trimming of all N's from reads
# --trimlq=<trimlq>... The quality cutoff for the read trimming
# [Default: 25,25]
# --removebases=<removebases> Number of bases to remove from ends of reads
# See trim_reads --help for more details of -x
# option
# --indexqual=<indexqual> The quality of the supplied read index files
# --indexes=<indexes> Index fastq files for fastq files
# [Default: None]
# -o, --output=<output> The output bam file
# [Default: mapped.bam]
# Help:
# <input> Input can be multiple fastq/sff files

#%begin validate
if options['indexqual'] and len(options['indexes'].value) != 2:
validation_error("You must supply 2 index files when using --indexqual")
#%end

#%begin pipeline
# Convert format if needed
_inputs = []
for fq in options['input'].value:
if fq.endswith('.sff'):
outpath = basename(fq) + '.fastq'
_x = run('convert_format', input=fq, output=outpath)
_inputs.append(outpath)
else:
_inputs.append(fq)

if len(_inputs) > 1:
output = run('paired_to_interleave', input=_inputs)
else:
output = _inputs[0]

# Run index qual filter
if options['indexqual']:
output = run(
'interleaved_index_filter',
input=output,
index1=options['indexes'].value[0],
index2=options['indexes'].value[1],
minimum=options['indexqual']
)

# Run general trimming
if options['trimn'] or options['trimlq'] or options['removebases']:
output = run(
'trim_reads',
input=output,
trim_n=options['trimn'],
qualcutoff=options['trimlq'],
removebases=options['removebases']
)

# Map fastq to reference
refindex = run('bwa_index', input=options['reference'])
output = run(
'bwa_mem',
input=output,
interleaved=True,
reference=refindex
)

bash('cat', input=output)

#trimmed = run('cutadapt', input=fastq, qualcutoff=options['qualcutoff'], interleave=options['interleave'])
#index_ref = run('bwa_index', reference=options['reference'])
#sam = run('bwa_mem', reference=reference, fastq=trimmed)
#ubam = run('sam_to_bam', input=sam)
#bam = run('sort_bam', input=ubam, output=options['output'])
#run('plot_bam', input=bam, output=options['output']+'.svg', format='svg')

#index_ref >> sam

#%end
6 changes: 6 additions & 0 deletions tests/map_pipe.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env bash

export JIP_PATH=$PWD/jip_modules

# Super simple test to make sure pieces all work nicely together
tests/jip_modules/map_pipe.jip tests/testinput/f1.fastq tests/testinput/f1.fastq -r tests/testinput/ref.fasta --indexqual 21 --indexes tests/testinput/f1.index.fastq tests/testinput/f2.index.fastq --removebases 1
16 changes: 16 additions & 0 deletions tests/testinput/f1.index.fastq
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@read1
ATGC
+
IIII
@read2
ATGC
+
IIII
@read3
ATGC
+
II5I
@read4
ATGC
+
II5I
16 changes: 16 additions & 0 deletions tests/testinput/f2.index.fastq
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@read1
ATGC
+
IIII
@read2
ATGC
+
II5I
@read3
ATGC
+
IIII
@read4
ATGC
+
II5I

0 comments on commit 5f7e218

Please sign in to comment.