Skip to content

Commit

Permalink
fix for unsigned int in CRAM tags, issue #322
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimzalunin committed Oct 29, 2015
1 parent ed25614 commit 7729dc8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/java/htsjdk/samtools/CRAMFileWriter.java
Expand Up @@ -379,6 +379,8 @@ protected void finish() {
outputStream.flush();
if (indexer != null)
indexer.finish();
}catch (final RuntimeException re) {
throw re;
} catch (final Exception e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit 7729dc8

Please sign in to comment.