Skip to content

Commit

Permalink
use old formatted printing for compatibility in ISADotNet.XLSX
Browse files Browse the repository at this point in the history
  • Loading branch information
HLWeil committed Sep 12, 2021
1 parent ac15be6 commit e1d1f1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ISADotNet.XLSX/AssayFile/AnnotationColumn.fs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ module AnnotationColumn =
|> fun o ->
let tsr = o.[0]
let tanNumberOnly = o.[1]
let tan = $"{OboPurlURL}{tsr}_{tanNumberOnly}"
let tan = sprintf "%s%s_%s" OboPurlURL tsr tanNumberOnly//$"{OboPurlURL}{tsr}_{tanNumberOnly}"
OntologyAnnotation.fromString "" tsr tan
|> fun ontology -> {ontology with Comments = numberComment}
|> Some
Expand Down

0 comments on commit e1d1f1a

Please sign in to comment.