Skip to content

Commit b38cac8

Browse files
committed
lowercasing tissue names in the HPA dataset
1 parent 4595dcf commit b38cac8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/scala/io/opentargets/etl/backend/Expression.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ object Expression extends LazyLogging {
153153
): DataFrame = {
154154
val normalTissueKeyDF =
155155
normalTissueDF
156+
.withColumn("Tissue", lower(col("Tissue")))
156157
.withColumn("key", concat(col("Gene"), lit('-'), col("Tissue")))
157158
.withColumnRenamed("Gene", "GeneNormal")
158159
.withColumnRenamed("Tissue", "TissueNormal")

0 commit comments

Comments
 (0)