-
Notifications
You must be signed in to change notification settings - Fork 6
UseCases
Krisztián Fekete edited this page Apr 13, 2015
·
3 revisions
- create a new data package from existing database
- derive a new data package from existing data packages by computation
- update a data package for new input data (create a new version)
- update algorithm to create a data package (create a new version)
- variant: use a new data package as input
- use data in data package without the tool
- visualize data flow
- create a reproducible set of data packages
- publish how-to-reproduce document
There are existing data that are to be converted to packages.
-
ws new PACKAGE-NAME(create workspace for a new package) -
cp data-files PACKAGE-NAME/output(copy data into workspace) cd PACKAGE-NAME-
ws pack --to REPOSITORY(create package from workspace)
-
ws new PACKAGE-NAME(create workspace for a new package) cd PACKAGE-NAME-
ws mount PACKAGE1 NAME1(make data fromPACKAGE1[version] available atinput/NAME1) - ...
-
ws mount PACKAGEn NAMEn(make data fromPACKAGEn[version] available atinput/NAMEn) - create some program under the current directory (e.g. python or STATA scripts) that uses data from
inputand produces some data underoutput - run the program
-
ws pack --to REPOSITORY(create package from workspace)
-
ws develop PACKAGE(create workspace ) -
ws mount NEW-INPUT-PACKAGE NEW-INPUT-NAME(make data fromNEW-INPUT-PACKAGEavailable atinput/NEW-INPUT-NAME) - modify code
- run code
ws pack