Skip to content

Commit

Permalink
minor bugfix to blast parser
Browse files Browse the repository at this point in the history
the orientation of the alignment was not correctly reported. HLAminer does not use this information and thus is NOT affected by the change.
  • Loading branch information
warrenlr committed Oct 10, 2017
1 parent 2a7b01e commit dc6fe18
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Binary file modified HLAminer_v1-3-1.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion HLAminer_v1.3.1/bin/parseXMLblast.old
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ while( my $result = $in->next_result ) {
if ($identity >= $id_cutoff)
{

if($hsp->query->strand == -1 ){
if($hsp->hit->strand == -1 ){
$direct="-";
}else{
$direct="+";
Expand Down
2 changes: 1 addition & 1 deletion HLAminer_v1.3.1/bin/parseXMLblast.pl
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
if ($identity >= $id_cutoff)
{

if($hsp->query->strand == -1 ){
if($hsp->hit->strand < 1 ){
$direct="-";
}else{
$direct="+";
Expand Down
2 changes: 1 addition & 1 deletion HLAminer_v1.3.1/bin/parseXMLblast_v1-1.pl
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
if ($identity >= $id_cutoff)
{

if($hsp->query->strand == -1 ){
if($hsp->hit->strand == -1 ){
$direct="-";
}else{
$direct="+";
Expand Down
2 changes: 1 addition & 1 deletion HLAminer_v1.3.1/bin/parseXMLblast_v1-2.pl
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
if ($identity >= $id_cutoff)
{

if($hsp->query->strand == -1 ){
if($hsp->hit->strand == -1 ){
$direct="-";
}else{
$direct="+";
Expand Down
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# HLAminer

## HLAminer v1.3.4 Rene L. Warren (c) 2011-2016
## HLAminer v1.3.1 Rene L. Warren (c) 2011-2017
## email: rwarren [at] bcgsc [dot] ca
## Visit www.bcgsc.ca/bioinfo/software/hlaminer for additional information

Expand Down Expand Up @@ -37,9 +37,9 @@
### LICENSE <a name="LICENSE"></a>
--------

HLAminer Copyright (c) 2011-2016 Canada's Michael Smith Genome Science Centre. All rights reserved.
TASR Copyright (c) 2010-2016 Canada's Michael Smith Genome Science Centre. All rights reserved.
SSAKE Copyright (c) 2006-2016 Canada's Michael Smith Genome Science Centre. All rights reserved.
HLAminer Copyright (c) 2011-2017 Canada's Michael Smith Genome Science Centre. All rights reserved.
TASR Copyright (c) 2010-2017 Canada's Michael Smith Genome Science Centre. All rights reserved.
SSAKE Copyright (c) 2006-2017 Canada's Michael Smith Genome Science Centre. All rights reserved.

Due to the clinical implications of HLAminer, the code is now released
under the BC Cancer Agency software license agreement (academic use).
Expand Down

0 comments on commit dc6fe18

Please sign in to comment.