| 123456789101112131415161718192021222324252627282930313233 |
- @prefix ex: <http://world.eu.org/example1#> .
- @prefix cb: <http://world.eu.org/cannabis-breeding#> .
- @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
- @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
- @prefix dc: <http://purl.org/dc/elements/1.1/> .
- ex:ProductionCycle_21d96b6c-179 a cb:ProductionCycle ;
- rdfs:label "Cycle 2026-3" ;
- dc:description "Fixture production cycle for garden-layer tests." .
- ex:Strain_kerosene_reference a cb:Strain ;
- rdfs:label "Kerosene Reference" ;
- dc:description "Fixture strain for garden-layer tests." .
- ex:Plant_90d53925-bb5 a cb:IndividualPlant ;
- rdfs:label "Kerosene Root" ;
- dc:description "Fixture root plant for clone traversal." ;
- cb:inCycle ex:ProductionCycle_21d96b6c-179 ;
- cb:belongsToStrain ex:Strain_kerosene_reference .
- ex:Plant_kerosene_clone_a a cb:IndividualPlant ;
- rdfs:label "Kerosene Clone A" ;
- dc:description "First fixture clone." ;
- cb:cloneOf ex:Plant_90d53925-bb5 ;
- cb:inCycle ex:ProductionCycle_21d96b6c-179 ;
- cb:belongsToStrain ex:Strain_kerosene_reference .
- ex:Plant_kerosene_clone_b a cb:IndividualPlant ;
- rdfs:label "Kerosene Clone B" ;
- dc:description "Second fixture clone." ;
- cb:cloneOf ex:Plant_90d53925-bb5 ;
- cb:inCycle ex:ProductionCycle_21d96b6c-179 ;
- cb:belongsToStrain ex:Strain_kerosene_reference .
|