Skip to content

Commit

Permalink
Merge pull request #8 from nfdi4plants/ro-crate
Browse files Browse the repository at this point in the history
Fix isa-writer writing RO-Crate
  • Loading branch information
HLWeil authored Aug 28, 2024
2 parents b0f7a95 + 0aac58b commit 1666699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arc-export/Writers.fs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ let write_ro_crate_metadata (outDir: string) (arc: ARC) =

let write_isa_json (outDir: string) (arc: ARC) =
let inv = arc.ISA |> Option.get
let isa_json = inv.ToROCrateJsonString(2)
let isa_json = inv.ToISAJsonString(2)
let isa_json_path = Path.Combine(outDir, isa_json_filename)
File.WriteAllText(isa_json_path, isa_json)

Expand Down

0 comments on commit 1666699

Please sign in to comment.