Skip to content

Commit

Permalink
Removed CC0-1.0 licenses for unlicensed work from OMEX metadata RDF.
Browse files Browse the repository at this point in the history
VCell models have no license.
  • Loading branch information
danv61 committed Apr 5, 2022
1 parent 411b60c commit b489cda
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions vcell-cli/src/main/java/org/vcell/cli/vcml/VcmlOmexConverter.java
Original file line number Diff line number Diff line change
Expand Up @@ -711,19 +711,19 @@ private static String getMetadata(String vcmlName, BioModel bioModel, File diagr
ret += PubMet.EndDescription;
ret += PubMet.EndIsDescribedBy;

ret += PubMet.CommentLicense;
ret += PubMet.StartLicense;
ret += PubMet.StartDescription;
ret += PubMet.StartIdentifier;
ret += PubMet.ResourceIdentifier;
String lic = "spdx:" + "CC0-1.0";
ret += lic;
ret += PubMet.EndIdentifier;
ret += PubMet.StartLabel;
ret += "CC0-1.0";
ret += PubMet.EndLabel;
ret += PubMet.EndDescription;
ret+= PubMet.EndLicense;
// ret += PubMet.CommentLicense;
// ret += PubMet.StartLicense;
// ret += PubMet.StartDescription;
// ret += PubMet.StartIdentifier;
// ret += PubMet.ResourceIdentifier;
// String lic = "spdx:" + "CC0-1.0";
// ret += lic;
// ret += PubMet.EndIdentifier;
// ret += PubMet.StartLabel;
// ret += "CC0-1.0";
// ret += PubMet.EndLabel;
// ret += PubMet.EndDescription;
// ret+= PubMet.EndLicense;

String sPubDate = new SimpleDateFormat("yyyy-MM-dd").format(pubDate);
ret += PubMet.CommentCreated;
Expand Down

0 comments on commit b489cda

Please sign in to comment.