@@ -25,11 +25,11 @@ private val myLogger = LogManager.getLogger("biokotlin.util.MergeGVCFUtils")
25
25
*/
26
26
object MergeGVCFUtils {
27
27
28
- fun mergeGVCFs (inputDir : String , outputFile : String , bedfile : String? = null) {
29
- mergeGVCFs(getGVCFFiles(inputDir), outputFile, bedfile )
28
+ fun mergeGVCFs (inputDir : String , outputFile : String , bedFile : String? = null) {
29
+ mergeGVCFs(getGVCFFiles(inputDir), outputFile, bedFile )
30
30
}
31
31
32
- fun mergeGVCFs (inputFiles : List <String >, outputFile : String , bedfile : String? = null) {
32
+ fun mergeGVCFs (inputFiles : List <String >, outputFile : String , bedFile : String? = null) {
33
33
34
34
runBlocking {
35
35
@@ -72,12 +72,12 @@ object MergeGVCFUtils {
72
72
73
73
}
74
74
75
- val theBedfile = bedfile ?.trim()
75
+ val theBedfile = bedFile ?.trim()
76
76
if (theBedfile.isNullOrEmpty()) {
77
77
myLogger.info(" Writing output: $outputFile " )
78
78
writeOutputVCF(outputFile, samples, variantContextChannel)
79
79
} else {
80
- myLogger.info(" Writing output files with base name: $outputFile and bedfile: $bedfile " )
80
+ myLogger.info(" Writing output files with base name: $outputFile and bedfile: $bedFile " )
81
81
writeOutputVCF(outputFile, theBedfile, samples, variantContextChannel)
82
82
}
83
83
0 commit comments