Skip to content
forked from SynBioDex/libSBOLj

Java Library for Synthetic Biology Open Language (SBOL)

License

Notifications You must be signed in to change notification settings

nfergu/libSBOLj

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

libSBOLj: SBOL Java library

libSBOLj provides the core Java interfaces and their implementation for the Synthetic Biology Open Language (SBOL). The library provides an API to work with SBOL objects, the functionality to read and write SBOL documents as XML/RDF files, and a validator to check the correctness of SBOL models.

Getting the libSBOLj source

  1. Create a GitHub account. link

  2. Download and set up Git. link

  3. Fork the libSBOLj repository and clone it to your machine. link

  4. Download and set up Maven. link

  5. Change to your libSBOLj directory via the command line and execute the following command:

    mvn package

This will create the libSBOLj JAR file (libSBOLj-core2-2.0.0-SNAPSHOT-withDependencies.jar) and place it into the core2/target subdirectory. link

Using libSBOLj

libSBOLj command line

libSBOLj comes with a command-line interface (CLI) that can be used to validate SBOL files. After you build the libSBOLj-core2-2.0.0-SNAPSHOT-withDependencies.jar as described above, you can use it to validate files as follows after changing to the core2/target subdirectory:

cd core2/target/
java -jar libSBOLj-core2-2.0.0-SNAPSHOT-withDependencies.jar <inputFile>

If validation is successful, the program will print the contents of the SBOL document. You can also output the result to a file.

java -jar libSBOLj-core2-2.0.0-SNAPSHOT-withDependencies.jar <inputFile> -o <outputFile>

If validation fails with an error, there will be a message printed about the validation error. In addition to checking all required validation rules, it will also check if the URIs are compliant and whether the SBOL document is complete (i.e., all referenced objects are contained within the file). These validation checks can be turned off with the -n and -i flags, respectively.

If the input file is an SBOL 1.1 file, then it will convert the file into an SBOL 2.0 file. This conversion should be provided a default URI prefix with the -p flag. It can also be provided a default version, if desired. Finally, the -t flag will insert the type of top level objects into the URI during conversion, if desired.

java -jar libSBOLj-core2-2.0.0-SNAPSHOT-withDependencies.jar <in> -o <out> -p <prefix> -v <version>

About

Java Library for Synthetic Biology Open Language (SBOL)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%