Skip to content

Commit

Permalink
Merge pull request #1602 from milaboratory/fix-local-preset-on-windows
Browse files Browse the repository at this point in the history
update version and test
  • Loading branch information
gnefedev authored Mar 27, 2024
2 parents 8d4077d + e8fed3e commit e9e7513
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ val toObfuscate: Configuration by configurations.creating {
val obfuscationLibs: Configuration by configurations.creating


val mixcrAlgoVersion = "4.6.0-85-fix-preset-export"
val mixcrAlgoVersion = "4.6.0-87-fix-local-preset-on-windows"
// may be blank (will be inherited from mixcr-algo)
val milibVersion = ""
// may be blank (will be inherited from mixcr-algo or milib)
Expand Down
17 changes: 17 additions & 0 deletions itests/case_localPreset.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env bash

set -euxo pipefail

mixcr exportPreset --preset-name generic-amplicon \
--species hs \
--rna \
--floating-left-alignment-boundary \
--floating-right-alignment-boundary J \
--add-step assembleContigs \
preset.yaml

mixcr analyze --verbose local:preset test_R1.fastq test_R2.fastq with_dot
[[ -f with_dot.clna ]] || exit 1

mixcr analyze local#preset test_R1.fastq test_R2.fastq with_sharp
[[ -f with_sharp.clna ]] || exit 1

0 comments on commit e9e7513

Please sign in to comment.