ganja_test_fixture.ttl 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. @prefix ex: <http://world.eu.org/example1#> .
  2. @prefix cb: <http://world.eu.org/cannabis-breeding#> .
  3. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  4. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  5. @prefix dc: <http://purl.org/dc/elements/1.1/> .
  6. ex:ProductionCycle_21d96b6c-179 a cb:ProductionCycle ;
  7. rdfs:label "Cycle 2026-3" ;
  8. dc:description "Fixture production cycle for garden-layer tests." .
  9. ex:Strain_kerosene_reference a cb:Strain ;
  10. rdfs:label "Kerosene Reference" ;
  11. dc:description "Fixture strain for garden-layer tests." .
  12. ex:Plant_90d53925-bb5 a cb:IndividualPlant ;
  13. rdfs:label "Kerosene Root" ;
  14. dc:description "Fixture root plant for clone traversal." ;
  15. cb:inCycle ex:ProductionCycle_21d96b6c-179 ;
  16. cb:belongsToStrain ex:Strain_kerosene_reference .
  17. ex:Plant_kerosene_clone_a a cb:IndividualPlant ;
  18. rdfs:label "Kerosene Clone A" ;
  19. dc:description "First fixture clone." ;
  20. cb:cloneOf ex:Plant_90d53925-bb5 ;
  21. cb:inCycle ex:ProductionCycle_21d96b6c-179 ;
  22. cb:belongsToStrain ex:Strain_kerosene_reference .
  23. ex:Plant_kerosene_clone_b a cb:IndividualPlant ;
  24. rdfs:label "Kerosene Clone B" ;
  25. dc:description "Second fixture clone." ;
  26. cb:cloneOf ex:Plant_90d53925-bb5 ;
  27. cb:inCycle ex:ProductionCycle_21d96b6c-179 ;
  28. cb:belongsToStrain ex:Strain_kerosene_reference .