Skip to content

Commit 5e0473e

Browse files
committed
Merge remote-tracking branch 'upstream/master' into allow-add-overlap
2 parents 63f1b51 + a5407ea commit 5e0473e

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ before_install:
3434
# inability to link it as an error and fail the command. You can --force a link step, but
3535
# I don't see a way to tell it to not replace things that exist and also not fail.
3636
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew bundle --verbose || true; fi
37-
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew link --overwrite python@3.8; fi
37+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew link --overwrite python@3.9 || brew link --overwrite python@3.8 || true; fi
3838
# Try installing gcc6 twice in case of errors like this:
3939
# Error: HOMEBREW_LOGS was not exported!
4040
# Please don't worry, you likely hit a bug auto-updating from an old version.

test/small/xy.dict

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
@HD VN:1.5 SO:unknown
12
@SQ SN:x LN:1001
23
@SQ SN:y LN:1001

test/small/yx.dict

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
@HD VN:1.5 SO:unknown
12
@SQ SN:y LN:1001
23
@SQ SN:x LN:1001

test/t/50_vg_giraffe.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ rm -f x.vg x.gbwt x.gg x.snarls x.min x.dist x.gg x.fa x.fa.fai x.vcf.gz x.vcf.g
7070
cp small/xy.fa .
7171
cp small/xy.vcf.gz .
7272
cp small/xy.vcf.gz.tbi .
73-
vg giraffe xy.fa xy.vcf.gz -f small/x.fa_1.fastq -o SAM --ref-paths small/yx.dict | grep "@SQ" > surjected-yx.dict
74-
vg giraffe xy.fa xy.vcf.gz -f small/x.fa_1.fastq -o SAM --ref-paths small/xy.dict | grep "@SQ" > surjected-xy.dict
73+
vg giraffe xy.fa xy.vcf.gz -f small/x.fa_1.fastq -o SAM --ref-paths small/yx.dict | grep -E "^@(SQ|HD)" > surjected-yx.dict
74+
vg giraffe xy.fa xy.vcf.gz -f small/x.fa_1.fastq -o SAM --ref-paths small/xy.dict | grep -E "^@(SQ|HD)" > surjected-xy.dict
7575

7676
diff surjected-yx.dict small/yx.dict
7777
is "${?}" "0" "surjecting with a sequence dictionary in non-sorted order produces headers in non-sorted order"

0 commit comments

Comments
 (0)