Skip to content

Commit

Permalink
fix output names
Browse files Browse the repository at this point in the history
  • Loading branch information
gnefedev committed Feb 20, 2024
1 parent 5652995 commit a1664ca
Show file tree
Hide file tree
Showing 2 changed files with 2 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-49-rework_analyze"
val mixcrAlgoVersion = "4.6.0-50-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
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ object CommandAnalyze {

fun setActualAlignOutputs(fileNames: List<String>) {
val outputSeed = Path(nextInputs.requireSingleton().fileNames.requireSingleton()).name
val samples = listSamplesForSeedFileName("alignments", outputSeed, fileNames)
val samples = listSamplesForSeedFileName(if (outputNamePrefix.isBlank()) "alignments" else "", outputSeed, fileNames)
nextInputs = samples.map {
InputFileSet(it.sample, listOf(outputFolder.resolve(it.fileName).toString()))
}
Expand Down

0 comments on commit a1664ca

Please sign in to comment.