Skip to content

Commit

Permalink
fix dot
Browse files Browse the repository at this point in the history
  • Loading branch information
gnefedev committed Feb 20, 2024
1 parent 0858866 commit 5652995
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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-48-rework_analyze"
val mixcrAlgoVersion = "4.6.0-49-rework_analyze"
// may be blank (will be inherited from mixcr-algo)
val milibVersion = ""
// may be blank (will be inherited from mixcr-algo or milib)
Expand Down
3 changes: 2 additions & 1 deletion src/main/kotlin/com/milaboratory/mixcr/cli/CommandAnalyze.kt
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,8 @@ object CommandAnalyze {
this += extraAlignArgs
this += mixins.flatMap { it.cmdArgs }
this += pathsForNotAligned.argsForAlign()
this += listOf("--output-name-suffix", "alignments")
if (outputNamePrefix.isBlank())
this += listOf("--output-name-suffix", "alignments")
}
}

Expand Down

0 comments on commit 5652995

Please sign in to comment.