Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Transfer is a part of the VIVO Harvester which moves data in to, out of, and between jena model. In general, it reads data from a specified input model and moves it to the specified output model. While it works exclusively with RDF data (therefore a tool such as Translate may need to be used first to convert the data to RDF), it can handle many different record formats such as H2 or text files. In conjunction with Score and Match, it can be used for such purposes as adding fetched data into VIVO that does not match anything already in VIVO, or adding only fetched data into VIVO that matches something already in VIVO and ignoring the rest, and other permutations.

...

Transfer is used just after translation in a script to transfer from a recordhandler to a jena model.

Example

No Format

# Execute Transfer to import from record handler into local temp model
$Transfer -o $H2MODEL -OmodelName=$MODELNAME -OdbUrl=$MODELDBURL -h $H2RH -HdbUrl=$RDFRHDBURL -n $NAMESPACE

...