Skip to content

Commit 010e69a

Browse files
committedNov 14, 2021
Fixing reference for CRAM
1 parent ae1c83f commit 010e69a

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed
 

‎lib/hadoop-bam-8.0.1-SNAPSHOT.jar

255 Bytes
Binary file not shown.

‎src/main/scala/org/biodatageeks/sequila/datasources/BAM/AlignmentRelation.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -111,14 +111,15 @@ trait BDGAlignFileReaderWriter [T <: BDGAlignInputFormat]{
111111
.hadoopConfiguration
112112
.unset("hadoopbam.bam.intervals")
113113

114-
logger.info(s"Setting BAM validation stringency to ${validationStringency.toString}")
114+
logger.info(s"Setting BAM/CRAM validation stringency to ${validationStringency.toString}")
115115
spark
116116
.sparkContext
117117
.hadoopConfiguration
118118
.set(SAMHeaderReader.VALIDATION_STRINGENCY_PROPERTY, validationStringency.toString)
119119

120120
refPath match {
121121
case Some(path) =>
122+
logger.info(s"Using CRAM reference ${path}")
122123
spark
123124
.sparkContext
124125
.hadoopConfiguration

‎src/main/scala/org/biodatageeks/sequila/pileup/Pileup.scala

+1-5
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,10 @@ class Pileup(spark:SparkSession) {
2626
if (f == InputDataType.BAMInputDataType)
2727
new BAMTableReader[BAMBDGInputFormat](spark, tableName, sampleId, "bam", None)
2828
else if (f == InputDataType.CRAMInputDataType) {
29-
val refPath = spark.sqlContext
30-
.sparkContext
31-
.hadoopConfiguration
32-
.get(CRAMBDGInputFormat.REFERENCE_SOURCE_PATH_PROPERTY)
3329
new BAMTableReader[CRAMBDGInputFormat](spark, tableName, sampleId, "cram", Some(refPath))
3430
}
3531
else throw new Exception("Only BAM and CRAM file formats are supported.")
36-
case None => throw new Exception("Wrong file extension - only BAM and CRAM file formats are supported.")
32+
case None => throw new Exception("Empty file extension - BAM and CRAM file formats are supported.")
3733
}
3834
val (alignments, bounds) =
3935
tableReader

0 commit comments

Comments
 (0)