# 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 logic operation
get_transcriptome_id_from_logic_operation(
logic_operation = "not",
triplestore = avidaDB
)
# More than one logic operation
get_transcriptome_id_from_logic_operation(
logic_operation = c("not", "and"),
transcriptome_seq = TRUE,
triplestore = avidaDB
)
# At seed_1 and seed_2
get_transcriptome_id_from_logic_operation(
logic_operation = c("not", "and"),
seed_id = c(1,2),
transcriptome_seq = TRUE,
transcriptome_pos = TRUE,
triplestore = avidaDB
)
Run the code above in your browser using DataLab