get_docker_image_from_experiment_id {avidaR} | R Documentation |
Get docker image from experiment
Description
get the docker image built to run the experiment, which guarantees reproducibility .
Usage
get_docker_image_from_experiment_id(avida_experiment_id, triplestore)
Arguments
avida_experiment_id |
Integer or a vector of integer values. |
triplestore |
Object of class triplestore_access which manages database access. |
Value
Data frame. Columns: "avida_experiment_id" "docker_image_id" "id" "repo_digest"
Examples
# Create triplestore object
avidaDB <- triplestore_access$new()
# Set access options
avidaDB$set_access_options(
url = "https://graphdb.fortunalab.org",
user = "public_avida",
password = "public_avida",
repository = "avidaDB_test"
)
# Single paper
get_docker_image_from_experiment_id(
avida_experiment_id = 1,
triplestore = avidaDB
)
# More than one experiment
get_docker_image_from_experiment_id(
avida_experiment_id = c(1, 2, 3, 4),
triplestore = avidaDB
)
[Package avidaR version 1.2.1 Index]