Skip to content

Commit

Permalink
Merge pull request #258 from samtools/cram3_rebase
Browse files Browse the repository at this point in the history
Cram3 rebase
  • Loading branch information
jacarey committed Jun 1, 2015
2 parents 287b33f + d92460d commit 55af7bc
Show file tree
Hide file tree
Showing 320 changed files with 35,901 additions and 14,566 deletions.
187 changes: 0 additions & 187 deletions .idea/misc.xml

This file was deleted.

6 changes: 1 addition & 5 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,7 @@
<property name="javac.debug" value="true"/>

<!-- Get GIT hash, if available, otherwise leave it blank. -->
<exec executable="git" outputproperty="repository.revision" failifexecutionfails="true" errorproperty="">
<arg value="log"/>
<arg value="-1"/>
<arg value="--pretty=format:%H_%at"/>
</exec>

<property name="repository.revision" value=""/>
<property name="htsjdk-version" value="1.132"/>
<property name="htsjdk-version-file" value="htsjdk.version.properties"/>
Expand Down
Binary file added lib/apache-ant-1.8.2-bzip2.jar
Binary file not shown.
Binary file added lib/commons-compress-1.4.1.jar
Binary file not shown.
Binary file added lib/xz-1.5.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/java/htsjdk/samtools/BinaryTagCodec.java
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ private void writeArray(final Object value, final boolean isUnsignedArray) {
* @param length How many bytes in binaryRep are tag storage.
*/
public static SAMBinaryTagAndValue readTags(final byte[] binaryRep, final int offset,
final int length, final ValidationStringency validationStringency) {
final int length, final ValidationStringency validationStringency) {
final ByteBuffer byteBuffer = ByteBuffer.wrap(binaryRep, offset, length);
byteBuffer.order(ByteOrder.LITTLE_ENDIAN);

Expand Down
Loading

0 comments on commit 55af7bc

Please sign in to comment.