Skip to content

Commit

Permalink
v0.1.6: fix a bug for smaller set of GT
Browse files Browse the repository at this point in the history
  • Loading branch information
huangyh09 committed Oct 5, 2019
1 parent a0fbcd9 commit 34b52d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vireoSNP/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.5"
__version__ = "0.1.6"
2 changes: 1 addition & 1 deletion vireoSNP/vireo.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def main():
options.geno_tag)

mm_idx = match(cell_vcf['variants'], donor_vcf['variants'])
idx1 = np.where(mm_idx != None)[0]
idx1 = np.where(mm_idx == mm_idx)[0] #remove None
idx2 = mm_idx[idx1].astype(int)

donor_GPb = donor_GPb[idx2, :, :]
Expand Down

0 comments on commit 34b52d7

Please sign in to comment.