Skip to content

Commit

Permalink
Merge pull request #231 from dozy/tophat_hs_aln
Browse files Browse the repository at this point in the history
use bwa aln for human split with tophat target alignment
  • Loading branch information
srl147 authored Jun 26, 2017
2 parents c4f2568 + 6628a9c commit 108635c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
LIST OF CHANGES
---------------

release 51.10.2
- use bwa aln for human split with tophat target alignment

release 51.10.1
- Modified qc run function list, removed copy_interop and switched archive_to_irods to samplesheet

Expand Down
5 changes: 3 additions & 2 deletions lib/npg_pipeline/archive/file/generation/seq_alignment.pm
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,9 @@ sub _lsf_alignment_command { ## no critic (Subroutines::ProhibitExcessComplexity
$p4_param_vals->{alignment_method} = q[tophat2];
if($do_target_alignment) { $p4_param_vals->{alignment_reference_genome} = $self->_ref($l,q(bowtie2)); }
if($nchs) {
$p4_param_vals->{hs_alignment_reference_genome} = $self->_default_human_split_ref(q{bowtie2}, $self->repository);
$p4_param_vals->{alignment_hs_method} = q[tophat2];
# this human split alignment method is currently the same as the default, but this may change
$p4_param_vals->{hs_alignment_reference_genome} = $self->_default_human_split_ref(q{bwa0_6}, $self->repository);
$p4_param_vals->{alignment_hs_method} = $hs_bwa;
}
}
else {
Expand Down

0 comments on commit 108635c

Please sign in to comment.