Skip to content

Commit 29a3045

Browse files
committed
Changed bedfile to bedFile in MergeGVCFUtils
1 parent 6478639 commit 29a3045

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main/kotlin/biokotlin/util/MergeGVCFUtils.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ private val myLogger = LogManager.getLogger("biokotlin.util.MergeGVCFUtils")
2525
*/
2626
object MergeGVCFUtils {
2727

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)
3030
}
3131

32-
fun mergeGVCFs(inputFiles: List<String>, outputFile: String, bedfile: String? = null) {
32+
fun mergeGVCFs(inputFiles: List<String>, outputFile: String, bedFile: String? = null) {
3333

3434
runBlocking {
3535

@@ -72,12 +72,12 @@ object MergeGVCFUtils {
7272

7373
}
7474

75-
val theBedfile = bedfile?.trim()
75+
val theBedfile = bedFile?.trim()
7676
if (theBedfile.isNullOrEmpty()) {
7777
myLogger.info("Writing output: $outputFile")
7878
writeOutputVCF(outputFile, samples, variantContextChannel)
7979
} 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")
8181
writeOutputVCF(outputFile, theBedfile, samples, variantContextChannel)
8282
}
8383

0 commit comments

Comments
 (0)