Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Fix #653 #672
Conversation
yfarjoun
added the
Review-party candidate
label
Aug 9, 2016
yfarjoun
was assigned
by droazen
Aug 9, 2016
yfarjoun
and 1 other
commented on an outdated diff
Aug 9, 2016
| @@ -217,7 +217,7 @@ private void readHeader() throws IOException { | ||
| PositionalBufferedStream pbs = null; | ||
| try { | ||
| is = ParsingUtils.openInputStream(path); | ||
| - if (isGZIPPath(path)) { | ||
| + if (hasBlockCompressedExtension(path) || hasBlockCompressedExtension(new URI(path))) { |
yfarjoun
Contributor
|
magicDGS
added some commits
Aug 10, 2016
|
I addressed your comment and added other stuff:
Because the deprecated method is not used anymore, should I remove it and get rid of the tests too? Back to you, @yfarjoun! |
coveralls
commented
Aug 10, 2016
coveralls
commented
Aug 10, 2016
yfarjoun
and 1 other
commented on an outdated diff
Aug 10, 2016
| @@ -274,6 +275,7 @@ private void readHeader() throws IOException { | ||
| } | ||
| //Visible for testing | ||
| + @Deprecated |
magicDGS
Contributor
|
coveralls
commented
Aug 10, 2016
|
@yfarjoun, I added the comment for the deprecated method. |
yfarjoun
merged commit c8202f2
into
samtools:master
Aug 10, 2016
|
|
jamesemery
added a commit
to jamesemery/htsjdk
that referenced
this pull request
Sep 1, 2016
|
|
magicDGS + jamesemery |
ffd8427
|
magicDGS commentedJul 27, 2016
•
edited
Simple patch as suggested in #653.
TribbleIndexedFeatureReader.isGZIPPath()is not used anymore and it could be removed.