Non-standardized metadata files
import os
input_dir = "./isa_container/input_files"
os.listdir(path = input_dir)
['.DS_Store', 'IDs']
IDs_file_path = "./isa_container/input_files/IDs/ACTIONdemonstrator_XOmics_IDs_fake.csv"
import pandas as pd
IDs_df = pd.read_csv(IDs_file_path).iloc[:10,]
print("Data frame dimensions\n", IDs_df.shape)
print("Column names\n", IDs_df.columns)
print("Missing value counts\n", IDs_df.isna().sum())
IDs_df.head
Data frame dimensions (10, 5) Column names Index(['XOmicsPhenoID', 'XOmicsGenoID', 'XOmicsFamID', 'XOmicsMethylID', 'XOmicsmetaboID'], dtype='object') Missing value counts XOmicsPhenoID 0 XOmicsGenoID 0 XOmicsFamID 0 XOmicsMethylID 0 XOmicsmetaboID 0 dtype: int64
<bound method NDFrame.head of XOmicsPhenoID XOmicsGenoID XOmicsFamID XOmicsMethylID XOmicsmetaboID 0 XOP1 XOG1 XOF1 XOE1 XOM1 1 XOP2 XOG2 XOF2 XOE2 XOM2 2 XOP3 XOG3 XOF3 XOE3 XOM3 3 XOP4 XOG4 XOF4 XOE4 XOM4 4 XOP5 XOG5 XOF5 XOE5 XOM5 5 XOP6 XOG6 XOF6 XOE6 XOM6 6 XOP7 XOG7 XOF7 XOE7 XOM7 7 XOP8 XOG8 XOF8 XOE8 XOM8 8 XOP9 XOG9 XOF9 XOE9 XOM9 9 XOP10 XOG10 XOF10 XOE10 XOM10>
# print current directory
import numpy as np
import os
os.getcwd()
'/Users/philippe/Documents/git/isa-api2/isa-api/isa-cookbook/content/notebooks'
Create a new ISA object
# create new investigation with single study
from isatools.model import *
investigation = Investigation()
# define title
investigation.title = "X-omics data analysis, integration and stewardship demonstrator dataset: NTR ACTION omics data"
investigation.title
'X-omics data analysis, integration and stewardship demonstrator dataset: NTR ACTION omics data'
investigation.description = "Predict childhood aggression with multi-omics data and demonstrate the FAIRification process and data analysis of a multi-omics project"
investigation.identifier = "tbd"
# add one study to investigation
investigation.studies.append(Study())
investigation.studies
[isatools.model.Study(filename='', identifier='', title='', description='', submission_date='', public_release_date='', contacts=[], design_descriptors=[], publications=[], factors=[], protocols=[], assays=[], sources=[], samples=[], process_sequence=[], other_material=[], characteristic_categories=[], comments=[], units=[])]
According to MetaboLights help site, the title should ideally be the same as for a corresponding manuscript.
investigation.studies[0].title = "X-omics data analysis, integration and stewardship demonstrator dataset: NTR ACTION omics data"
investigation.studies[0].identifier = "tbd" # TODO: add identifier; update title
investigation.studies[0].filename = "s_study.txt"
investigation.studies[0]
isatools.model.Study(filename='s_study.txt', identifier='tbd', title='X-omics data analysis, integration and stewardship demonstrator dataset: NTR ACTION omics data', description='', submission_date='', public_release_date='', contacts=[], design_descriptors=[], publications=[], factors=[], protocols=[], assays=[], sources=[], samples=[], process_sequence=[], other_material=[], characteristic_categories=[], comments=[], units=[])
Ontologies can be searched e.g. at http://www.ontobee.org/ or https://www.ebi.ac.uk/ols/index.
FAIR genomes lookups: https://github.com/fairgenomes/fairgenomes-semantic-model/tree/main/lookups
# ontologies
ontologies = {
"afo": OntologySource(
name = "AFO",
description = "Allotrope Merged Ontology Suite"),
"chebi": OntologySource(
name = "CHEBI",
description = "Chemical Entities of Biological Interest"),
"chmo": OntologySource(
name = "CHMO",
description = "Chemical Methods Ontology"),
"edam": OntologySource(
name = "EDAM",
description = "Bioinformatics operations, data types, formats, identifiers and topics"),
"efo": OntologySource(
name = "EFO",
description = "Experimental Factor Ontology"),
"ero": OntologySource(
name = "eagle-i resource ontology",
description = "An ontology of research resources such as instruments, protocols, reagents, animal models and biospecimens"),
"maxo": OntologySource(
name = "MAXO",
description = "Medical Action Ontology"),
"msio": OntologySource(
name = "MSIO",
description = "Metabolite Standards Initiative Ontology"),
"ncbitaxon": OntologySource(
name = "NCBITAXON",
description = "NCBI organismal classification"),
"ncit": OntologySource(
name = "NCIT",
description = "NCI Thesaurus OBO Edition"),
"obi": OntologySource(
name = "OBI",
description = "Ontology for Biomedical Investigations"),
"pato": OntologySource(
name = "PATO",
description = "PATO - the Phenotype And Trait Ontology"),
"uberon": OntologySource(
name = "UBERON",
description = "Uber-anatomy ontology")
}
# add ontologies to investigation
for o in ontologies.values():
investigation.ontology_source_references.append(o)
Note that the protocol used in the process to derive sample
from source
MUST be of type 'sample collection' (see https://isa-specs.readthedocs.io/en/latest/isatab.html#study-table-file).
protocol_params = {
"anatomical entity": ProtocolParameter(
parameter_name = OntologyAnnotation(
term = "anatomical entity",
term_source = ontologies["uberon"],
term_accession = "http://purl.obolibrary.org/obo/UBERON_0001062"))
}
# define sample collection protocol
sample_collection_protocol = Protocol(
name = "sample collection",
# see github.com/ISA-tools/isa-specs/blob/master/source/isatab.rst
# -> MUST be of type 'sample collection'
protocol_type = OntologyAnnotation(term = "sample collection"),
parameters = [protocol_params["anatomical entity"]])
investigation.studies[0].protocols.append(sample_collection_protocol)
See also https://ebi.ac.uk/metabolights/guides/Protocol/Protocol for protocols required for submission in MetaboLights, i.e. Sample collection, Extraction, Chromatography, Mass spectrometry, Data transformation, and Metabolite identification.
# gender
studyfactor_gender = StudyFactor(
name = "genotypic sex",
factor_type = OntologyAnnotation( # Ontology source reference
term = "genotypic sex", # also used in FAIR genomes
term_source = ontologies["pato"],
term_accession = "http://purl.obolibrary.org/obo/PATO_0020000"))
# female
factorvalue_female = FactorValue(
factor_name = studyfactor_gender,
value = OntologyAnnotation( # str or OntologyAnnotation
term = "XX Genotype", # also used in FAIR genomes
term_source = ontologies["ncit"],
term_accession = "http://purl.obolibrary.org/obo/NCIT_C45976"))
# male
factorvalue_male = FactorValue(
factor_name = studyfactor_gender,
value = OntologyAnnotation( # str or OntologyAnnotation
term = "XY Genotype", # also used in FAIR genomes
term_source = ontologies["ncit"],
term_accession = "http://purl.obolibrary.org/obo/NCIT_C45977"))
# agressive behaviour assessment - T-scores
studyfactor_aggression = StudyFactor(
name = "aggression score",
factor_type = OntologyAnnotation(
term = "childhood aggressive behaviour measurement",
term_source = ontologies["efo"],
term_accession = "http://www.ebi.ac.uk/efo/EFO_0007663"),
comments = [
Comment(name = "T-score reference",
value = "Age- and sex-specific Aggressive Behaviour T-score as described in Hagenbeek et al. https://doi.org/10.3389/fpyst.2020.00165")])
# T-score value
class FactorValueAggressionScore(FactorValue):
def __init__(self,
factor_name = studyfactor_aggression,
value = None,
unit = OntologyAnnotation(
term = "T-score",
term_source = ontologies["ncit"],
term_accession = "http://purl.obolibrary.org/obo/NCIT_C120401"),
comments = None):
super().__init__(factor_name = factor_name, value = value, unit = unit, comments = comments)
assay_genotype = Assay(filename = "a_assay_genotype.txt",
measurement_type = OntologyAnnotation(term = "", term_source = "", term_accession = ""),
technology_type = OntologyAnnotation(term = "nucleotide sequencing", term_source ="", term_accession = ""),
technology_platform = OntologyAnnotation(term = "", term_source = "", term_accession = ""))
# TODO: What sequencing plaform has been used?
# define extraction and measurement protocols
dna_extraction_protocol = Protocol(
name = "DNA extraction",
protocol_type = OntologyAnnotation(
term = "DNA extraction",
term_source = ontologies["obi"],
term_accession = "http://purl.obolibrary.org/obo/OBI_0000257"))
# TODO: check type; compare to FAIR genomes
investigation.studies[0].protocols.append(dna_extraction_protocol)
genotype_profiling_protocol = Protocol(
name = "genotype profiling",
protocol_type = OntologyAnnotation(
term = "genotyping",
term_source = ontologies["efo"],
term_accession = "http://www.ebi.ac.uk/efo/EFO_0000750")
)
investigation.studies[0].protocols.append(genotype_profiling_protocol)
# TODO: check type; compare to FAIR genomes
assay_methylation = Assay(
filename = "a_assay_methylation.txt",
measurement_type = OntologyAnnotation(
term = "Methylation Beta Value",
term_source = ontologies["ncit"],
term_accession = "http://purl.obolibrary.org/obo/NCIT_C164051"),
technology_type = OntologyAnnotation(
term = "DNA methylation profiling by array assay",
term_source = ontologies["obi"],
term_accession = "http://purl.obolibrary.org/obo/OBI_0001332"),
technology_platform = OntologyAnnotation(
term = "Illumina Infinium MethylationEPIC BeadChip",
term_source = ontologies["obi"],
term_accession = "http://purl.obolibrary.org/obo/OBI_0002131")
)
# define extraction and measurement protocols
dna_extraction_protocol = Protocol(
name = "DNA extraction",
protocol_type = OntologyAnnotation(
term = "DNA extraction",
term_source = ontologies["obi"],
term_accession = "http://purl.obolibrary.org/obo/OBI_0000257"))
# TODO: check type; compare to FAIR genomes
investigation.studies[0].protocols.append(dna_extraction_protocol)
methylation_profiling_protocol = Protocol(
name = "methylation profiling",
protocol_type = OntologyAnnotation(
term = "methylation profiling",
term_source = ontologies["efo"],
term_accession = "http://www.ebi.ac.uk/efo/EFO_0000751"),
# components = [OntologyAnnotation(
# term = "Illumina Infinium MethylationEPIC BeadChip",
# term_source = obi,
# term_accession = "http://purl.obolibrary.org/obo/OBI_0002131")]
)
investigation.studies[0].protocols.append(methylation_profiling_protocol)
methylation_data_processing_protocol = Protocol(
name = "methylation data processing protocol",
protocol_type = OntologyAnnotation(
term = "Protocol",
term_source = ontologies["edam"],
term_accession = "http://edamontology.org/data_2531"),
description = "Sinke, Lucy, van Iterson, Maarten, Cats, Davy, Slieker, Roderick, & Heijmans, Bas. (2019, July 11). DNAmArray: Streamlined workflow for the quality control, normalization, and analysis of Illumina methylation array data (Version 2.1). Zenodo. http://doi.org/10.5281/zenodo.3355292",
uri = "http://doi.org/10.5281/zenodo.3355292")
investigation.studies[0].protocols.append(methylation_data_processing_protocol)
assay_metabolomics_amines = Assay(
filename = "a_assay_metabolomics_amines.txt",
measurement_type = OntologyAnnotation(
term = "targeted metabolite profiling",
term_source = ontologies["msio"],
term_accession = "http://purl.obolibrary.org/obo/MSIO_0000100"),
technology_type = OntologyAnnotation(
term = "liquid chromatography-mass spectrometry",
term_source = ontologies["chmo"],
term_accession = "http://purl.obolibrary.org/obo/CHMO_0000524"))
# sample_type = OntologyAnnotation(
# term = "urine specimen",
# term_source = ['obi'],
# term_accession = "http:/purl.obolibrary.org/obo/OBI_0000651")
#
# technology_platform = OntologyAnnotation(
# term = "",
# term_source = ontologies[""],
# term_accession = "")
# TODO: What exact platform/instrument has been used?
assay_metabolomics_OA = Assay(
filename = "a_assay_metabolomics_OA.txt",
measurement_type = OntologyAnnotation(
term = "targeted metabolite profiling",
term_source = ontologies["msio"],
term_accession = "http://purl.obolibrary.org/obo/MSIO_0000100"),
technology_type = OntologyAnnotation(
term = "gas chromatography-mass spectrometry",
term_source = ontologies["chmo"]))
# sample_type = OntologyAnnotation(
# term = "urine specimen",
# term_source = ['obi'],
# term_accession = "http:/purl.obolibrary.org/obo/OBI_0000651")
# technology_platform = OntologyAnnotation(
# term = "",
# term_source = ontologies[""],
# term_accession = "")
# TODO: What exact platform/instrument has been used?
assay_metabolomics_steroids = Assay(
filename = "a_assay_metabolomics_steroids.txt",
measurement_type = OntologyAnnotation(
term = "targeted metabolite profiling",
term_source = ontologies["msio"],
term_accession = "http://purl.obolibrary.org/obo/MSIO_0000100"),
technology_type = OntologyAnnotation(
term = "high-performance liquid chromatography-mass spectrometry",
term_source = ontologies["chmo"],
term_accession = "http://purl.obolibrary.org/obo/CHMO_0000796"))
# sample_type = OntologyAnnotation(
# term = "urine specimen",
# term_source = ['obi'],
# term_accession = "http:/purl.obolibrary.org/obo/OBI_0000651")
# technology_platform = OntologyAnnotation(
# term = "",
# term_source = ontologies[""],
# term_accession = "")
# TODO: What exact platform/instrument has been used?
urine_sampling_protocol = Protocol(
name = "urine sampling",
protocol_type = OntologyAnnotation(
term = 'urine speciment collection',
# term_source = [''],
term_accession = 'http://snomed.info/id/57617002')
)
# TODO: is this useful a ontology?
investigation.studies[0].protocols.append(urine_sampling_protocol)
extraction_metabolomics = Protocol(
name = "Extraction",
protocol_type = OntologyAnnotation(
term = 'Extraction',
term_source = ontologies["ncit"],
term_accession = 'http://purl.obolibrary.org/obo/NCIT_C61575'),
parameters = [
ProtocolParameter(parameter_name=OntologyAnnotation(term = "Post Extraction")),
ProtocolParameter(parameter_name=OntologyAnnotation(term = "Derivatization"))
])
chromatography = Protocol(
name = "Chromatography",
protocol_type = OntologyAnnotation(
term = 'Chromatography',
term_source = ontologies["ncit"],
term_accession = 'http://purl.obolibrary.org/obo/NCIT_C16431'),
parameters = [
ProtocolParameter(parameter_name=OntologyAnnotation(term = "Chromatography Instrument")),
ProtocolParameter(parameter_name=OntologyAnnotation(term = "Column model")),
ProtocolParameter(parameter_name=OntologyAnnotation(term = "Column type"))
])
labelling_metabolites = Protocol(
name = "Labelling metabolites",
protocol_type = OntologyAnnotation(
term = 'Labelling',
term_source = ontologies["chmo"],
term_accession = 'http://purl.obolibrary.org/obo/CHMO_0001675')
)
mass_spectrometry = Protocol(
name = "Mass spectrometry",
protocol_type = OntologyAnnotation(
term = 'Mass spectrometry',
term_source = ontologies["ncit"],
term_accession = 'http://purl.obolibrary.org/obo/NCIT_C17156'),
parameters = [
ProtocolParameter(parameter_name=OntologyAnnotation(term = "Scan polarity")),
ProtocolParameter(parameter_name=OntologyAnnotation(term = "Scan m/z range")),
ProtocolParameter(parameter_name=OntologyAnnotation(term = "Instrument")),
ProtocolParameter(parameter_name=OntologyAnnotation(term = "Ion source")),
ProtocolParameter(parameter_name=OntologyAnnotation(term = "Mass analyzer"))
])
data_transformation = Protocol(
name = "Data transformation",
protocol_type = OntologyAnnotation(
term = 'Data Transformation',
term_source = ontologies["ncit"],
term_accession = 'http://purl.obolibrary.org/obo/NCIT_C43582')
)
metabolite_identification = Protocol(
name = "Metabolite identification",
protocol_type = OntologyAnnotation(
term = 'peak identification',
term_source = ontologies["afo"],
term_accession = 'http://purl.allotrope.erg/ontologies/process#AFP_0003618')
)
# TODO: Is this the correct ontlogy (source)?
Add samples to study and link to previously defined protocols and assays.
For MetaboLights, sample information should include unique sample name, organism, organism part, sample type (control, QC, experimental sample), other descriptors as factors (age, gender).
for idx, row in IDs_df.iterrows():
# add subjects (sources)
# TODO: issue - source should represent a source material such as urine,
# and sample a respective extract or similar
# check if source was already added already (rows can contain duplicate entries)
#is_new_source = True
source_name = row["XOmicsPhenoID"]
source = next((src for src in investigation.studies[0].sources
if src.name == source_name), None)
if not source:
#is_new_source = False
# create new source for subject
source = Source(name = row["XOmicsPhenoID"])
# Characteristics - Organism - should be included for Metabolights
# here, organism is defined per source, i.e. individual
source.characteristics.append(
Characteristic(
category = OntologyAnnotation(
term = "organism"),
# TODO: add term source and accession for category? would such information be lost in ISA-Tab?
value = OntologyAnnotation(
term = "Homo sapiens",
term_source = ontologies["ncbitaxon"],
term_accession = "http://purl.bioontology.org/ontology/NCBITAXON/9606")))
# TODO: check if family ID should/should not be added / is required for analysis
source.characteristics.append(
Characteristic(category = "family ID",
value = row["XOmicsFamID"]))
source.characteristics.append(
Characteristic(
category = OntologyAnnotation(
term = "childhood aggressive behaviour measurement",
term_source = ontologies["efo"],
term_accession = "http://www.ebi.ac.uk/efo/EFO_0007663"),
value = "", #tscore,
unit = OntologyAnnotation(
term = "T-score",
term_source = ontologies["ncit"],
term_accession = "http://purl.obolibrary.org/obo/NCIT_C120401")))
#source.factor_values.append(FactorValueAggressionScore(value = tscore))
# add subject to study
investigation.studies[0].sources.append(source)
# add samples - sample names need to be unique
# urine sample for metabolomics
if not pd.isna(row["XOmicsmetaboID"]):
# check if urine sample was already added to study
urine_sample_name = "urine_{0}".format(source_name)
urine_sample = next(
(smpl for smpl in investigation.studies[0].samples
if smpl.name == urine_sample_name), None)
if not urine_sample:
# create a new sample with unique name
urine_sample = Sample(
name = urine_sample_name,
derives_from = [source]) # the individual
# Characteristics - Organism part - should be included for Metabolights
# here, organism part is defined per sample
urine_sample.characteristics.append(
Characteristic(
category = OntologyAnnotation(term = "organism part"),
value = OntologyAnnotation(
term = "urine",
term_source = ontologies["uberon"],
term_accession = "http://purl.obolibrary.org/obo/UBERON_0001088")))
# Characteristics - sample type - should be included for Metabolights
# i.e. control, QC, experimental sample
urine_sample.characteristics.append(
Characteristic(
category = "sample type", # TODO: could not find a term yet; sample type is not an ontological term, but required by MetaboLights
value = OntologyAnnotation(
term = "experimental sample",
term_source = ontologies["chmo"],
term_accession = "http://purl.obolibrary.org/obo/CHMO_0002746")))
# add urine sample to study
investigation.studies[0].samples.append(urine_sample)
# check if urine sampling process exists for source
urine_p_name = "urine_specimen_collection_process_{0}".format(source.name)
urine_collection_process = next(
(prcs for prcs in investigation.studies[0].process_sequence
if prcs.name == urine_p_name), None)
if not urine_collection_process:
# define urine sampling process for this subject
urine_collection_process = Process(
name = urine_p_name,
executes_protocol = sample_collection_protocol,
parameter_values = [
ParameterValue(
category = protocol_params["anatomical entity"], #ProtocolParameter
value = "urine")],
inputs = [source],
outputs = [urine_sample])
investigation.studies[0].process_sequence.append(urine_collection_process)
else:
# urine sampling process already exists for the source
# add urine sample to outputs of existing process
urine_collection_process.outputs.append(urine_sample)
# add samples
# buccal swab sample for genotyping and DNA methylation arrays
if not pd.isna(row["XOmicsGenoID"]) or not pd.isna(row["XOmicsMethylID"]):
buccal_sample_name = "buccal_mucosa_{0}".format(source_name)
buccal_sample = next(
(smpl for smpl in investigation.studies[0].samples
if smpl.name == buccal_sample_name), None)
if not buccal_sample:
# create sample of buccal mucosa
buccal_sample = Sample(
name = buccal_sample_name,
derives_from = [source]) # same source as urine sample
buccal_sample.characteristics.append(
Characteristic(
category = OntologyAnnotation(term = "organism part"),
value = ""))
# TODO: add more characteristics - compare to urime sample
# add sample to study
investigation.studies[0].samples.append(buccal_sample)
# check if buccal swab sampling process exists for source
# needs to be checked, because multiple samples can be derived from one source
buccal_p_name = "buccal_specimen_collection_process_{0}".format(source.name)
buccal_collection_process = next(
(prcs for prcs in investigation.studies[0].process_sequence
if prcs.name == buccal_p_name), None)
if not buccal_collection_process:
# define buccal sampling process for this subject
buccal_collection_process = Process(
name = buccal_p_name,
executes_protocol = sample_collection_protocol,
parameter_values = [
ParameterValue(
category = protocol_params["anatomical entity"], #ProtocolParameter
value = "buccal mucosa")],
inputs = [source],
outputs = [buccal_sample]
)
investigation.studies[0].process_sequence.append(buccal_collection_process)
else:
# buccal sampling process already exists for the source
# add buccal sample to outputs of existing process
buccal_collection_process.outputs.append(buccal_sample)
# NOTE: adding extraction process at study level doesn seem to work
# causes sample to disappear from study file
#if not pd.isna(row["XOmicsMethylID"]):
# dna_extraction_process = next(())
# assay_methylation.samples.append(buccal_sample) # first check if already added
# methylation_profiling_process = Process(
# name = "methylation_profiling_{0}".format(source.name),
# executes_protocol = methylation_profiling_protocol,
# inputs = [buccal_sample],
## outputs = [buccal_dna])
Genotype assay
# add samples to genotype assay
for idx, row in IDs_df.iterrows():
source_name = row["XOmicsPhenoID"]
if not pd.isna(row["XOmicsGenoID"]):
buccal_sample_name = "buccal_mucosa_{0}".format(source_name)
buccal_sample = next(
(smpl for smpl in investigation.studies[0].samples
if smpl.name == buccal_sample_name), None)
genotype_sample = next(
(smpl for smpl in assay_genotype.samples
if smpl.name == buccal_sample_name), None)
if not genotype_sample:
assay_genotype.samples.append(buccal_sample) # first check if already added
# define DNA as material extracted from buccal mucosa sample
# on study level, because the same DNA is used for genotyping AND DNA methylation profiling
# TODO: check if this works; could be that extraction has to be on assay level
# but Study object has process_sequence, i.e. this is technically possible
# define DNA material for this sample
# now trying on assay level
buccal_dna = Material(
name = "buccal_DNA_{0}".format(row["XOmicsGenoID"]),
type_ = "Extract Name")
# define extraction process for buccal DNA
dna_extraction_process = Process(
name = "DNA_extraction_{0}".format(row["XOmicsGenoID"]),
executes_protocol = dna_extraction_protocol,
inputs = [buccal_sample],
outputs = [buccal_dna])
#if not pd.isna(row["XOmicsMethylID"]):
# dna_extraction_process = next(())
genotype_profiling_process = Process(
name = "genotype_profiling_{0}".format(row["XOmicsGenoID"]),
executes_protocol = genotype_profiling_protocol,
inputs = [buccal_dna])
plink(dna_extraction_process, genotype_profiling_process)
assay_genotype.process_sequence.append(dna_extraction_process)
assay_genotype.process_sequence.append(genotype_profiling_process)
# add samples to methylation assay
for idx, row in IDs_df.iterrows():
source_name = row["XOmicsPhenoID"]
if not pd.isna(row["XOmicsMethylID"]):
buccal_sample_name = "buccal_mucosa_{0}".format(source_name)
buccal_sample = next(
(smpl for smpl in investigation.studies[0].samples
if smpl.name == buccal_sample_name), None)
methylation_sample = next(
(smpl for smpl in assay_methylation.samples
if smpl.name == buccal_sample_name), None)
if not methylation_sample:
assay_methylation.samples.append(buccal_sample) # first check if already added
# define DNA as material extracted from buccal mucosa sample
# on study level, because the same DNA is used for genotyping AND DNA methylation profiling
# TODO: check if this works; could be that extraction has to be on assay level
# but Study object has process_sequence, i.e. this is technically possible
# define DNA material for this sample
# now trying on assay level
buccal_dna = Material(
name = "buccal_DNA_{0}".format(row["XOmicsMethylID"]),
type_ = "Extract Name")
# define extraction process for buccal DNA
dna_extraction_process = Process(
name = "DNA_extraction_{0}".format(row["XOmicsMethylID"]),
executes_protocol = dna_extraction_protocol,
inputs = [buccal_sample],
outputs = [buccal_dna])
#if not pd.isna(row["XOmicsMethylID"]):
# dna_extraction_process = next(())
methylation_profiling_process = Process(
name = "methylation_profiling_{0}".format(row["XOmicsMethylID"]),
executes_protocol = methylation_profiling_protocol,
inputs = [buccal_dna])
plink(dna_extraction_process, methylation_profiling_process)
assay_methylation.process_sequence.append(dna_extraction_process)
assay_methylation.process_sequence.append(methylation_profiling_process)
Metabolomics assays
# add samples, processes and datafiles to metabolomics Amines assay
Assay = assay_metabolomics_amines
# Define datafiles (not all may be relevant)
raw_datafile = DataFile(filename="link/to/raw/data", label="Raw Spectral Data File")
normalized_datafile = DataFile(filename="link/to/normalized_data", label="Normalization Name")
derived_spectral_data_file = DataFile(filename="link/to/spectral_file", label="Derived Spectral Data File")
Data_Transformation_Name = DataFile(filename="link/to/data_transformation_name", label="Data Transformation Name")
MAF = DataFile(filename="link/to/MAF", label="Metabolite Assignment File")
# Loop over samples and add process to samples
for idx, row in IDs_df.iterrows():
source_name = row["XOmicsPhenoID"]
# print(source_name)
if not pd.isna(row["XOmicsmetaboID"]):
# print(row['XOmicsmetaboID'])
urine_sample_name = "urine_{0}".format(source_name)
# print(urine_sample_name)
urine_sample = next(
(smpl for smpl in investigation.studies[0].samples
if smpl.name == urine_sample_name), None)
metabolomics_sample = next(
(smpl for smpl in Assay.samples
if smpl.name == urine_sample_name), None)
if not metabolomics_sample:
## Extraction
Post_extraction = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Post Extraction")), value = OntologyAnnotation(term="1 uL borate buffer (pH 8.8) with AQC reagent"))
Derivatization = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Derivatization")), value = "AQC")
material_extract = Material(
name = "extract_{0}".format(row["XOmicsmetaboID"]),
type_ = "Extract Name")
extraction_process = Process(
executes_protocol=extraction_metabolomics,
parameter_values=[Post_extraction, Derivatization],
inputs = [urine_sample],
outputs = [material_extract])
## Labelling
material_label = Material(
name ="labeled_{0}".format(row["XOmicsmetaboID"]),
type_ ="Labeled Extract Name")
labelling_process = Process(
executes_protocol=labelling_metabolites,
inputs = [extraction_process.outputs[0]],
outputs = [material_label])
## Chromatography
# separated_molecules = Material(
# name = "separated_molecules_{0}".format(row["XOmicsmetaboID"],
# type_ ="Labeled Extract Name")
# )
instrument = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Chromatography Instrument")), value = "Agilent 1290 Infinity II")
column_model = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Column model")), value = "Accq-Tag Ultra column (waters + FURHTER SPECS?)")
column_type = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Column type")), value = "reverse phase")
chromatography_process = Process(
name = "chromatography_{0}".format(row["XOmicsmetaboID"]),
executes_protocol = chromatography,
parameter_values = [instrument, column_model, column_type],
inputs = [labelling_process.outputs[0]],
outputs = []
# outputs = [separated_molecules]
)
## Mass spectrometry
scan_polarity = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Scan polarity")), value = "positive")
scan_range = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Scan m/z range")), value = "5-2000?")
instrument = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Instrument")), value = "AB SCIEX Qtrap 6500")
ion_source = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Ion source")), value = "ESI")
mass_analyzer = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Mass Analyzer")), value = "triple quadrupole linear ion trap")
mass_spectrometry_process = Process(
name = "mass_spectrometry_{0}".format(row["XOmicsmetaboID"]),
executes_protocol= mass_spectrometry,
parameter_values = [scan_polarity, scan_range, instrument, ion_source, mass_analyzer],
# inputs = [separated_molecules],
inputs = [],
outputs = [raw_datafile]
)
## Data transformation
data_transformation_process = Process(
name = "data_transformation_{0}".format(row["XOmicsmetaboID"]),
executes_protocol = data_transformation,
inputs = [raw_datafile],
outputs = [normalized_datafile, derived_spectral_data_file]
)
## Metabolite identification
metabolite_identification_process = Process(
name = "metabolite_identification_{0}".format(row["XOmicsmetaboID"]),
executes_protocol = metabolite_identification,
inputs = [normalized_datafile],
outputs= [Data_Transformation_Name, MAF]
)
# Link processes
plink(extraction_process, labelling_process)
plink(labelling_process, chromatography_process)
plink(chromatography_process, mass_spectrometry_process)
plink(mass_spectrometry_process, data_transformation_process)
plink(data_transformation_process, metabolite_identification_process)
# Add samples, materials and data files to the amines assay
Assay.samples.append(urine_sample)
Assay.other_material.append(material_extract)
Assay.other_material.append(material_label)
# Assay.other_material.append(separated_molecules)
Assay.data_files.append(raw_datafile)
Assay.data_files.append(normalized_datafile)
Assay.data_files.append(derived_spectral_data_file)
Assay.data_files.append(Data_Transformation_Name)
Assay.data_files.append(MAF)
## Add processes to the amines assay
Assay.process_sequence.append(extraction_process)
Assay.process_sequence.append(labelling_process)
Assay.process_sequence.append(chromatography_process)
Assay.process_sequence.append(mass_spectrometry_process)
Assay.process_sequence.append(data_transformation_process)
Assay.process_sequence.append(metabolite_identification_process)
# add samples, processes and datafiles to metabolomics OA assay
Assay = assay_metabolomics_OA
# Define datafiles (not all may be relevant)
raw_datafile = DataFile(filename="link/to/raw/data", label="Raw Spectral Data File")
normalized_datafile = DataFile(filename="link/to/normalized_data", label="Normalization Name")
derived_spectral_data_file = DataFile(filename="link/to/spectral_file", label="Derived Spectral Data File")
Data_Transformation_Name = DataFile(filename="link/to/data_transformation_name", label="Data Transformation Name")
MAF = DataFile(filename="link/to/MAF", label="Metabolite Assignment File")
# Loop over samples and add process to samples
for idx, row in IDs_df.iterrows():
source_name = row["XOmicsPhenoID"]
# print(source_name)
if not pd.isna(row["XOmicsmetaboID"]):
# print(row['XOmicsmetaboID'])
urine_sample_name = "urine_{0}".format(source_name)
# print(urine_sample_name)
urine_sample = next(
(smpl for smpl in investigation.studies[0].samples
if smpl.name == urine_sample_name), None)
metabolomics_sample = next(
(smpl for smpl in Assay.samples
if smpl.name == urine_sample_name), None)
if not metabolomics_sample:
Assay.samples.append(urine_sample)
## Extraction
Post_extraction = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Post Extraction")), value = "1 uL pyridine")
Derivatization = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Derivatization")), value = "oximation followed by silylation")
material_extract = Material(
name = "extract_{0}".format(row["XOmicsmetaboID"]),
type_ = "Extract Name")
extraction_process = Process(
executes_protocol=extraction_metabolomics,
parameter_values=[Post_extraction, Derivatization],
inputs = [urine_sample],
outputs = [material_extract])
## Labelling
material_label = Material(
name ="labeled_{0}".format(row["XOmicsmetaboID"]),
type_ ="Labeled Extract Name")
labelling_process = Process(
executes_protocol=labelling_metabolites,
inputs = [extraction_process.outputs[0]],
outputs = [material_label])
# ## Chromatography
# separated_molecules = Material(
# name = "separated_molecules_{0}".format(row["XOmicsmetaboID"],
# type_ ="Labeled Extract Name")
# )
instrument = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Chromatography Instrument")), value = "Agilent Technologies 7890A")
column_model = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Column model")), value = "HP-5MS UI (5% Phenyl Methyl Silox), 30 m x 0.25 m ID column with a film thickness of 25 um")
column_type = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Column type")), value = "low polarity")
chromatography_process = Process(
name = "chromatography_{0}".format(row["XOmicsmetaboID"]),
executes_protocol = chromatography,
parameter_values = [instrument, column_model, column_type],
inputs = [labelling_process.outputs[0]],
outputs = [],
# outputs = [separated_molecules]
)
## Mass spectrometry
scan_polarity = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Scan polarity")), value = "positive")
scan_range = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Scan m/z range")), value = "50-500")
instrument = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Instrument")), value = "Agilent Technologies mass selective detector (MSD 5975C) and MultiPurpose Sampler (MPS, MXY016-02A, GERSTEL)")
ion_source = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Ion source")), value = "EI (70 eV)")
mass_analyzer = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Mass Analyzer")), value = "single-quadrupole")
mass_spectrometry_process = Process(
name = "mass_spectrometry_{0}".format(row["XOmicsmetaboID"]),
executes_protocol= mass_spectrometry,
parameter_values = [scan_polarity, scan_range, instrument, ion_source, mass_analyzer],
inputs = [],
# inputs = [separated_molecules],
outputs = [raw_datafile]
)
## Data transformation
data_transformation_process = Process(
name = "data_transformation_{0}".format(row["XOmicsmetaboID"]),
executes_protocol = data_transformation,
inputs = [raw_datafile],
outputs = [normalized_datafile, derived_spectral_data_file]
)
## Metabolite identification
metabolite_identification_process = Process(
name = "metabolite_identification_{0}".format(row["XOmicsmetaboID"]),
executes_protocol = metabolite_identification,
inputs = [normalized_datafile],
outputs= [Data_Transformation_Name, MAF]
)
# ## Link processes
plink(extraction_process, labelling_process)
plink(labelling_process, chromatography_process)
plink(chromatography_process, mass_spectrometry_process)
plink(mass_spectrometry_process, data_transformation_process)
plink(data_transformation_process, metabolite_identification_process)
# ## Add samples, materials and data files to the OA assay
Assay.other_material.append(material_extract)
Assay.other_material.append(material_label)
# Assay.other_material.append(separated_molecules)
Assay.data_files.append(raw_datafile)
Assay.data_files.append(normalized_datafile)
Assay.data_files.append(derived_spectral_data_file)
Assay.data_files.append(Data_Transformation_Name)
Assay.data_files.append(MAF)
# ## Add processes to the OA assay
Assay.process_sequence.append(extraction_process)
Assay.process_sequence.append(labelling_process)
Assay.process_sequence.append(chromatography_process)
Assay.process_sequence.append(mass_spectrometry_process)
Assay.process_sequence.append(data_transformation_process)
Assay.process_sequence.append(metabolite_identification_process)
# add samples, processes and datafiles to metabolomics steroids assay
Assay = assay_metabolomics_steroids
# Define datafiles (not all may be relevant)
raw_datafile = DataFile(filename="link/to/raw/data", label="Raw Spectral Data File")
normalized_datafile = DataFile(filename="link/to/normalized_data", label="Normalization Name")
derived_spectral_data_file = DataFile(filename="link/to/spectral_file", label="Derived Spectral Data File")
Data_Transformation_Name = DataFile(filename="link/to/data_transformation_name", label="Data Transformation Name")
MAF = DataFile(filename="link/to/MAF", label="Metabolite Assignment File")
# Loop over samples and add process to samples
for idx, row in IDs_df.iterrows():
source_name = row["XOmicsPhenoID"]
# print(source_name)
if not pd.isna(row["XOmicsmetaboID"]):
# print(row['XOmicsmetaboID'])
urine_sample_name = "urine_{0}".format(source_name)
# print(urine_sample_name)
urine_sample = next(
(smpl for smpl in investigation.studies[0].samples
if smpl.name == urine_sample_name), None)
metabolomics_sample = next(
(smpl for smpl in Assay.samples
if smpl.name == urine_sample_name), None)
if not metabolomics_sample:
Assay.samples.append(urine_sample)
## Extraction
Post_extraction = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Post Extraction")), value = "1 uL filtered urine")
Derivatization = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Derivatization")), value = "NA")
material_extract = Material(
name = "extract_{0}".format(row["XOmicsmetaboID"]),
type_ = "Extract Name")
extraction_process = Process(
executes_protocol=extraction_metabolomics,
parameter_values=[Post_extraction, Derivatization],
inputs = [urine_sample],
outputs = [material_extract])
## Labelling
material_label = Material(
name ="labeled_{0}".format(row["XOmicsmetaboID"]),
type_ ="Labeled Extract Name")
labelling_process = Process(
executes_protocol=labelling_metabolites,
inputs = [extraction_process.outputs[0]],
outputs = [material_label])
## Chromatography
# separated_molecules = Material(
# name = "new_separated_molecules_{0}".format(row["XOmicsmetaboID"],
# type_ ="Labeled Extract Name")
# )
instrument = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Chromatography Instrument")), value = "Agilent 1290")
column_model = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Column model")), value = "Acquity UPLC CSH C18 column (Waters)")
column_type = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Column type")), value = "reverse phase")
chromatography_process = Process(
name = "chromatography_{0}".format(row["XOmicsmetaboID"]),
executes_protocol = chromatography,
parameter_values = [instrument, column_model, column_type],
inputs = [labelling_process.outputs[0]],
outputs = []
#outputs = [separated_molecules]
)
## Mass spectrometry
scan_polarity = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Scan polarity")), value = "switching positive and negative ion mode !! MAYBE SERPARATE INTO NEGATIVE AND POSITIVE ASSAY?")
scan_range = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Scan m/z range")), value = "5-3000?")
instrument = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Instrument")), value = "Agilent 6460")
ion_source = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Ion source")), value = "ESI")
mass_analyzer = ParameterValue(category = ProtocolParameter(parameter_name=OntologyAnnotation(term="Mass Analyzer")), value = "triple quadrupole")
mass_spectrometry_process = Process(
name = "mass_spectrometry_{0}".format(row["XOmicsmetaboID"]),
executes_protocol= mass_spectrometry,
parameter_values = [scan_polarity, scan_range, instrument, ion_source, mass_analyzer],
# inputs = [separated_molecules],
inputs = [],
outputs = [raw_datafile]
)
## Data transformation
data_transformation_process = Process(
name = "data_transformation_{0}".format(row["XOmicsmetaboID"]),
executes_protocol = data_transformation,
inputs = [raw_datafile],
outputs = [normalized_datafile, derived_spectral_data_file]
)
## Metabolite identification
metabolite_identification_process = Process(
name = "metabolite_identification_{0}".format(row["XOmicsmetaboID"]),
executes_protocol = metabolite_identification,
inputs = [normalized_datafile],
outputs= [Data_Transformation_Name, MAF]
)
## Link processes
plink(extraction_process, labelling_process)
plink(labelling_process, chromatography_process)
plink(chromatography_process, mass_spectrometry_process)
plink(mass_spectrometry_process, data_transformation_process)
plink(data_transformation_process, metabolite_identification_process)
## Add samples, materials and data files to the steroids assay
Assay.other_material.append(material_extract)
Assay.other_material.append(material_label)
# Assay.other_material.append(separated_molecules)
Assay.data_files.append(raw_datafile)
Assay.data_files.append(normalized_datafile)
Assay.data_files.append(derived_spectral_data_file)
Assay.data_files.append(Data_Transformation_Name)
Assay.data_files.append(MAF)
## Add processes to the steroids assay
Assay.process_sequence.append(extraction_process)
Assay.process_sequence.append(labelling_process)
Assay.process_sequence.append(chromatography_process)
Assay.process_sequence.append(mass_spectrometry_process)
Assay.process_sequence.append(data_transformation_process)
Assay.process_sequence.append(metabolite_identification_process)
# add assays to study
investigation.studies[0].assays.append(assay_genotype)
investigation.studies[0].assays.append(assay_methylation)
investigation.studies[0].assays.append(assay_metabolomics_amines)
investigation.studies[0].assays.append(assay_metabolomics_OA)
investigation.studies[0].assays.append(assay_metabolomics_steroids)
# create ISA files directory
out_dir = "isa_template"
if not os.path.isdir(out_dir):
os.makedirs(out_dir)
# write to ISA-Tab
from isatools import isatab
isatab.dump(investigation, out_dir)
print()
2021-12-01 22:51:43,707 [INFO]: isatab.py(_all_end_to_end_paths:1131) >> [2995, 3000, 3005, 3010, 3015, 3020, 3025, 3030, 3035, 3040] 2021-12-01 22:51:43,709 [WARNING]: isatab.py(write_study_table_files:1194) >> [2997, 2996, 2995, 2999, 2998, 3002, 3001, 3000, 3004, 3003, 3007, 3006, 3005, 3009, 3008, 3012, 3011, 3010, 3014, 3013, 3017, 3016, 3015, 3019, 3018, 3022, 3021, 3020, 3024, 3023, 3027, 3026, 3025, 3029, 3028, 3032, 3031, 3030, 3034, 3033, 3037, 3036, 3035, 3039, 3038, 3042, 3041, 3040, 3044, 3043] 2021-12-01 22:51:43,709 [INFO]: isatab.py(_longest_path_and_attrs:1091) >> [[2995, 2997, 2996], [2995, 2999, 2998], [3000, 3002, 3001], [3000, 3004, 3003], [3005, 3009, 3008], [3005, 3007, 3006], [3010, 3012, 3011], [3010, 3014, 3013], [3015, 3017, 3016], [3015, 3019, 3018], [3020, 3022, 3021], [3020, 3024, 3023], [3025, 3027, 3026], [3025, 3029, 3028], [3030, 3034, 3033], [3030, 3032, 3031], [3035, 3037, 3036], [3035, 3039, 3038], [3040, 3042, 3041], [3040, 3044, 3043]] 2021-12-01 22:51:43,753 [INFO]: isatab.py(_all_end_to_end_paths:1131) >> [2998, 3003, 3008, 3013, 3018, 3023, 3028, 3033, 3038, 3043] 2021-12-01 22:51:43,755 [INFO]: isatab.py(_longest_path_and_attrs:1091) >> [[2998, 3046, 3045, 3047], [3003, 3049, 3048, 3050], [3008, 3052, 3051, 3053], [3013, 3055, 3054, 3056], [3018, 3058, 3057, 3059], [3023, 3061, 3060, 3062], [3028, 3064, 3063, 3065], [3033, 3067, 3066, 3068], [3038, 3070, 3069, 3071], [3043, 3073, 3072, 3074]] 2021-12-01 22:51:43,757 [INFO]: isatab.py(_longest_path_and_attrs:1091) >> [[2998, 3046, 3045, 3047], [3003, 3049, 3048, 3050], [3008, 3052, 3051, 3053], [3013, 3055, 3054, 3056], [3018, 3058, 3057, 3059], [3023, 3061, 3060, 3062], [3028, 3064, 3063, 3065], [3033, 3067, 3066, 3068], [3038, 3070, 3069, 3071], [3043, 3073, 3072, 3074]] 2021-12-01 22:51:43,778 [INFO]: isatab.py(_all_end_to_end_paths:1131) >> [2998, 3003, 3008, 3013, 3018, 3023, 3028, 3033, 3038, 3043] 2021-12-01 22:51:43,781 [INFO]: isatab.py(_longest_path_and_attrs:1091) >> [[2998, 3076, 3075, 3077], [3003, 3079, 3078, 3080], [3008, 3082, 3081, 3083], [3013, 3085, 3084, 3086], [3018, 3088, 3087, 3089], [3023, 3091, 3090, 3092], [3028, 3094, 3093, 3095], [3033, 3097, 3096, 3098], [3038, 3100, 3099, 3101], [3043, 3103, 3102, 3104]] 2021-12-01 22:51:43,782 [INFO]: isatab.py(_longest_path_and_attrs:1091) >> [[2998, 3076, 3075, 3077], [3003, 3079, 3078, 3080], [3008, 3082, 3081, 3083], [3013, 3085, 3084, 3086], [3018, 3088, 3087, 3089], [3023, 3091, 3090, 3092], [3028, 3094, 3093, 3095], [3033, 3097, 3096, 3098], [3038, 3100, 3099, 3101], [3043, 3103, 3102, 3104]] 2021-12-01 22:51:43,848 [INFO]: isatab.py(_all_end_to_end_paths:1131) >> [2996, 3001, 3006, 3011, 3016, 3021, 3026, 3031, 3036, 3041] 2021-12-01 22:51:43,849 [INFO]: isatab.py(_longest_path_and_attrs:1091) >> [[2996, 3111, 3110, 3113, 3112, 3114, 3115, 3116, 3117], [3001, 3119, 3118, 3121, 3120, 3122, 3123, 3124, 3125], [3006, 3127, 3126, 3129, 3128, 3130, 3131, 3132, 3133], [3011, 3135, 3134, 3137, 3136, 3138, 3139, 3140, 3141], [3016, 3143, 3142, 3145, 3144, 3146, 3147, 3148, 3149], [3021, 3151, 3150, 3153, 3152, 3154, 3155, 3156, 3157], [3026, 3159, 3158, 3161, 3160, 3162, 3163, 3164, 3165], [3031, 3167, 3166, 3169, 3168, 3170, 3171, 3172, 3173], [3036, 3175, 3174, 3177, 3176, 3178, 3179, 3180, 3181], [3041, 3183, 3182, 3185, 3184, 3186, 3187, 3188, 3189]] 2021-12-01 22:51:43,851 [INFO]: isatab.py(_longest_path_and_attrs:1091) >> [[2996, 3111, 3110, 3113, 3112, 3114, 3115, 3116, 3117], [3001, 3119, 3118, 3121, 3120, 3122, 3123, 3124, 3125], [3006, 3127, 3126, 3129, 3128, 3130, 3131, 3132, 3133], [3011, 3135, 3134, 3137, 3136, 3138, 3139, 3140, 3141], [3016, 3143, 3142, 3145, 3144, 3146, 3147, 3148, 3149], [3021, 3151, 3150, 3153, 3152, 3154, 3155, 3156, 3157], [3026, 3159, 3158, 3161, 3160, 3162, 3163, 3164, 3165], [3031, 3167, 3166, 3169, 3168, 3170, 3171, 3172, 3173], [3036, 3175, 3174, 3177, 3176, 3178, 3179, 3180, 3181], [3041, 3183, 3182, 3185, 3184, 3186, 3187, 3188, 3189]] 2021-12-01 22:51:43,937 [INFO]: isatab.py(_all_end_to_end_paths:1131) >> [2996, 3001, 3006, 3011, 3016, 3021, 3026, 3031, 3036, 3041] 2021-12-01 22:51:43,939 [INFO]: isatab.py(_longest_path_and_attrs:1091) >> [[2996, 3196, 3195, 3198, 3197, 3199, 3200, 3201, 3202], [3001, 3204, 3203, 3206, 3205, 3207, 3208, 3209, 3210], [3006, 3212, 3211, 3214, 3213, 3215, 3216, 3217, 3218], [3011, 3220, 3219, 3222, 3221, 3223, 3224, 3225, 3226], [3016, 3228, 3227, 3230, 3229, 3231, 3232, 3233, 3234], [3021, 3236, 3235, 3238, 3237, 3239, 3240, 3241, 3242], [3026, 3244, 3243, 3246, 3245, 3247, 3248, 3249, 3250], [3031, 3252, 3251, 3254, 3253, 3255, 3256, 3257, 3258], [3036, 3260, 3259, 3262, 3261, 3263, 3264, 3265, 3266], [3041, 3268, 3267, 3270, 3269, 3271, 3272, 3273, 3274]] 2021-12-01 22:51:43,941 [INFO]: isatab.py(_longest_path_and_attrs:1091) >> [[2996, 3196, 3195, 3198, 3197, 3199, 3200, 3201, 3202], [3001, 3204, 3203, 3206, 3205, 3207, 3208, 3209, 3210], [3006, 3212, 3211, 3214, 3213, 3215, 3216, 3217, 3218], [3011, 3220, 3219, 3222, 3221, 3223, 3224, 3225, 3226], [3016, 3228, 3227, 3230, 3229, 3231, 3232, 3233, 3234], [3021, 3236, 3235, 3238, 3237, 3239, 3240, 3241, 3242], [3026, 3244, 3243, 3246, 3245, 3247, 3248, 3249, 3250], [3031, 3252, 3251, 3254, 3253, 3255, 3256, 3257, 3258], [3036, 3260, 3259, 3262, 3261, 3263, 3264, 3265, 3266], [3041, 3268, 3267, 3270, 3269, 3271, 3272, 3273, 3274]] 2021-12-01 22:51:44,024 [INFO]: isatab.py(_all_end_to_end_paths:1131) >> [2996, 3001, 3006, 3011, 3016, 3021, 3026, 3031, 3036, 3041] 2021-12-01 22:51:44,025 [INFO]: isatab.py(_longest_path_and_attrs:1091) >> [[2996, 3281, 3280, 3283, 3282, 3284, 3285, 3286, 3287], [3001, 3289, 3288, 3291, 3290, 3292, 3293, 3294, 3295], [3006, 3297, 3296, 3299, 3298, 3300, 3301, 3302, 3303], [3011, 3305, 3304, 3307, 3306, 3308, 3309, 3310, 3311], [3016, 3313, 3312, 3315, 3314, 3316, 3317, 3318, 3319], [3021, 3321, 3320, 3323, 3322, 3324, 3325, 3326, 3327], [3026, 3329, 3328, 3331, 3330, 3332, 3333, 3334, 3335], [3031, 3337, 3336, 3339, 3338, 3340, 3341, 3342, 3343], [3036, 3345, 3344, 3347, 3346, 3348, 3349, 3350, 3351], [3041, 3353, 3352, 3355, 3354, 3356, 3357, 3358, 3359]] 2021-12-01 22:51:44,027 [INFO]: isatab.py(_longest_path_and_attrs:1091) >> [[2996, 3281, 3280, 3283, 3282, 3284, 3285, 3286, 3287], [3001, 3289, 3288, 3291, 3290, 3292, 3293, 3294, 3295], [3006, 3297, 3296, 3299, 3298, 3300, 3301, 3302, 3303], [3011, 3305, 3304, 3307, 3306, 3308, 3309, 3310, 3311], [3016, 3313, 3312, 3315, 3314, 3316, 3317, 3318, 3319], [3021, 3321, 3320, 3323, 3322, 3324, 3325, 3326, 3327], [3026, 3329, 3328, 3331, 3330, 3332, 3333, 3334, 3335], [3031, 3337, 3336, 3339, 3338, 3340, 3341, 3342, 3343], [3036, 3345, 3344, 3347, 3346, 3348, 3349, 3350, 3351], [3041, 3353, 3352, 3355, 3354, 3356, 3357, 3358, 3359]]
import json
from isatools.isajson import ISAJSONEncoder
print(json.dumps(investigation, cls=ISAJSONEncoder, sort_keys=True, indent=4, separators=(',', ': ')))
{ "@id": "#investigation/5131975408", "comments": [], "description": "Predict childhood aggression with multi-omics data and demonstrate the FAIRification process and data analysis of a multi-omics project", "identifier": "tbd", "ontologySourceReferences": [ { "@id": "#ontology/5133002736", "comments": [], "description": "Allotrope Merged Ontology Suite", "file": "", "name": "AFO", "version": "" }, { "@id": "#ontology/5133003936", "comments": [], "description": "Chemical Entities of Biological Interest", "file": "", "name": "CHEBI", "version": "" }, { "@id": "#ontology/5133003552", "comments": [], "description": "Chemical Methods Ontology", "file": "", "name": "CHMO", "version": "" }, { "@id": "#ontology/5134609760", "comments": [], "description": "Bioinformatics operations, data types, formats, identifiers and topics", "file": "", "name": "EDAM", "version": "" }, { "@id": "#ontology/5134607360", "comments": [], "description": "Experimental Factor Ontology", "file": "", "name": "EFO", "version": "" }, { "@id": "#ontology/5134130768", "comments": [], "description": "An ontology of research resources such as instruments, protocols, reagents, animal models and biospecimens", "file": "", "name": "eagle-i resource ontology", "version": "" }, { "@id": "#ontology/5134130912", "comments": [], "description": "Medical Action Ontology", "file": "", "name": "MAXO", "version": "" }, { "@id": "#ontology/5134130864", "comments": [], "description": "Metabolite Standards Initiative Ontology", "file": "", "name": "MSIO", "version": "" }, { "@id": "#ontology/5134130624", "comments": [], "description": "NCBI organismal classification", "file": "", "name": "NCBITAXON", "version": "" }, { "@id": "#ontology/5134131152", "comments": [], "description": "NCI Thesaurus OBO Edition", "file": "", "name": "NCIT", "version": "" }, { "@id": "#ontology/5134131104", "comments": [], "description": "Ontology for Biomedical Investigations", "file": "", "name": "OBI", "version": "" }, { "@id": "#ontology/5134130480", "comments": [], "description": "PATO - the Phenotype And Trait Ontology", "file": "", "name": "PATO", "version": "" }, { "@id": "#ontology/5133078096", "comments": [], "description": "Uber-anatomy ontology", "file": "", "name": "UBERON", "version": "" } ], "people": [], "publicReleaseDate": "", "publications": [], "studies": [ { "@id": "#study/5133159920", "assays": [ { "@id": "#5132283808", "characteristicCategories": [], "comments": [], "dataFiles": [], "filename": "a_assay_genotype.txt", "materials": { "otherMaterials": [], "samples": [ { "@id": "#sample/5133932000", "characteristics": [ { "category": { "@id": "#annotation_value/d47a283a-f7f5-48ae-b7c4-cfd5aae4e7e2" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP1" }, { "@id": "#sample/5134467568", "characteristics": [ { "category": { "@id": "#annotation_value/b1e18af9-a3a6-4811-863d-47d73d583f0d" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP2" }, { "@id": "#sample/5133764544", "characteristics": [ { "category": { "@id": "#annotation_value/9eec3dfd-294e-4af2-8732-bce2d318c970" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP3" }, { "@id": "#sample/5133746080", "characteristics": [ { "category": { "@id": "#annotation_value/0557443d-8c59-4497-867f-d28b85c8be43" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP4" }, { "@id": "#sample/5133887952", "characteristics": [ { "category": { "@id": "#annotation_value/9763ae08-29c0-434a-b9cc-31d663983f8f" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP5" }, { "@id": "#sample/5133852832", "characteristics": [ { "category": { "@id": "#annotation_value/d42ebbc9-6e6a-4176-a3c5-8780546f6b15" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP6" }, { "@id": "#sample/5133855376", "characteristics": [ { "category": { "@id": "#annotation_value/d88b3d6c-3fd1-473d-8ab4-f8ad8b3d98de" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP7" }, { "@id": "#sample/5133771440", "characteristics": [ { "category": { "@id": "#annotation_value/44baa9a9-028d-4650-93b6-6e24b82c79ac" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP8" }, { "@id": "#sample/5133773648", "characteristics": [ { "category": { "@id": "#annotation_value/67ae10a5-0a1b-4e41-97ef-fee3f3ade35a" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP9" }, { "@id": "#sample/5133898608", "characteristics": [ { "category": { "@id": "#annotation_value/019abf22-bf29-4870-93c0-8fb42d6206b7" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP10" } ] }, "measurementType": { "@id": "#annotation_value/7f1d91c5-79b8-4984-9530-d733ce686194", "annotationValue": "", "comments": [], "termAccession": "", "termSource": "" }, "processSequence": [ { "@id": "#process/5133774128", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133932000" } ], "name": "DNA_extraction_XOG1", "nextProcess": { "@id": "#process/5133774176" }, "outputs": [ { "@id": "#material/extract-5133774032" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5133774176", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134607888" }, "inputs": [ { "@id": "#material/extract-5133774032" } ], "name": "genotype_profiling_XOG1", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133774128" } }, { "@id": "#process/5134137808", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5134467568" } ], "name": "DNA_extraction_XOG2", "nextProcess": { "@id": "#process/5134138240" }, "outputs": [ { "@id": "#material/extract-5134139008" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5134138240", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134607888" }, "inputs": [ { "@id": "#material/extract-5134139008" } ], "name": "genotype_profiling_XOG2", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134137808" } }, { "@id": "#process/5134005920", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133764544" } ], "name": "DNA_extraction_XOG3", "nextProcess": { "@id": "#process/5134004336" }, "outputs": [ { "@id": "#material/extract-5134137856" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5134004336", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134607888" }, "inputs": [ { "@id": "#material/extract-5134137856" } ], "name": "genotype_profiling_XOG3", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134005920" } }, { "@id": "#process/5134005824", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133746080" } ], "name": "DNA_extraction_XOG4", "nextProcess": { "@id": "#process/5134005248" }, "outputs": [ { "@id": "#material/extract-5134005056" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5134005248", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134607888" }, "inputs": [ { "@id": "#material/extract-5134005056" } ], "name": "genotype_profiling_XOG4", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134005824" } }, { "@id": "#process/5134005200", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133887952" } ], "name": "DNA_extraction_XOG5", "nextProcess": { "@id": "#process/5134006112" }, "outputs": [ { "@id": "#material/extract-5134004624" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5134006112", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134607888" }, "inputs": [ { "@id": "#material/extract-5134004624" } ], "name": "genotype_profiling_XOG5", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134005200" } }, { "@id": "#process/5134006160", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133852832" } ], "name": "DNA_extraction_XOG6", "nextProcess": { "@id": "#process/5134006784" }, "outputs": [ { "@id": "#material/extract-5134006880" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5134006784", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134607888" }, "inputs": [ { "@id": "#material/extract-5134006880" } ], "name": "genotype_profiling_XOG6", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134006160" } }, { "@id": "#process/5134006400", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133855376" } ], "name": "DNA_extraction_XOG7", "nextProcess": { "@id": "#process/5134006544" }, "outputs": [ { "@id": "#material/extract-5134005632" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5134006544", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134607888" }, "inputs": [ { "@id": "#material/extract-5134005632" } ], "name": "genotype_profiling_XOG7", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134006400" } }, { "@id": "#process/5134006736", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133771440" } ], "name": "DNA_extraction_XOG8", "nextProcess": { "@id": "#process/5134006688" }, "outputs": [ { "@id": "#material/extract-5134006352" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5134006688", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134607888" }, "inputs": [ { "@id": "#material/extract-5134006352" } ], "name": "genotype_profiling_XOG8", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134006736" } }, { "@id": "#process/5134006448", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133773648" } ], "name": "DNA_extraction_XOG9", "nextProcess": { "@id": "#process/5134006256" }, "outputs": [ { "@id": "#material/extract-5134006592" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5134006256", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134607888" }, "inputs": [ { "@id": "#material/extract-5134006592" } ], "name": "genotype_profiling_XOG9", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134006448" } }, { "@id": "#process/5134006832", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133898608" } ], "name": "DNA_extraction_XOG10", "nextProcess": { "@id": "#process/5134005776" }, "outputs": [ { "@id": "#material/extract-5134006064" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5134005776", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134607888" }, "inputs": [ { "@id": "#material/extract-5134006064" } ], "name": "genotype_profiling_XOG10", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134006832" } } ], "technologyPlatform": { "@id": "#annotation_value/11aef089-9db2-4bce-abe2-cf12542d5407", "annotationValue": "", "comments": [], "termAccession": "", "termSource": "" }, "technologyType": { "@id": "#annotation_value/5c32e86d-6298-494c-a8b3-c68cc4eb9ecc", "annotationValue": "nucleotide sequencing", "comments": [], "termAccession": "", "termSource": "" }, "unitCategories": [] }, { "@id": "#5132303952", "characteristicCategories": [], "comments": [], "dataFiles": [], "filename": "a_assay_methylation.txt", "materials": { "otherMaterials": [], "samples": [ { "@id": "#sample/5133932000", "characteristics": [ { "category": { "@id": "#annotation_value/d47a283a-f7f5-48ae-b7c4-cfd5aae4e7e2" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP1" }, { "@id": "#sample/5134467568", "characteristics": [ { "category": { "@id": "#annotation_value/b1e18af9-a3a6-4811-863d-47d73d583f0d" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP2" }, { "@id": "#sample/5133764544", "characteristics": [ { "category": { "@id": "#annotation_value/9eec3dfd-294e-4af2-8732-bce2d318c970" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP3" }, { "@id": "#sample/5133746080", "characteristics": [ { "category": { "@id": "#annotation_value/0557443d-8c59-4497-867f-d28b85c8be43" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP4" }, { "@id": "#sample/5133887952", "characteristics": [ { "category": { "@id": "#annotation_value/9763ae08-29c0-434a-b9cc-31d663983f8f" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP5" }, { "@id": "#sample/5133852832", "characteristics": [ { "category": { "@id": "#annotation_value/d42ebbc9-6e6a-4176-a3c5-8780546f6b15" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP6" }, { "@id": "#sample/5133855376", "characteristics": [ { "category": { "@id": "#annotation_value/d88b3d6c-3fd1-473d-8ab4-f8ad8b3d98de" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP7" }, { "@id": "#sample/5133771440", "characteristics": [ { "category": { "@id": "#annotation_value/44baa9a9-028d-4650-93b6-6e24b82c79ac" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP8" }, { "@id": "#sample/5133773648", "characteristics": [ { "category": { "@id": "#annotation_value/67ae10a5-0a1b-4e41-97ef-fee3f3ade35a" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP9" }, { "@id": "#sample/5133898608", "characteristics": [ { "category": { "@id": "#annotation_value/019abf22-bf29-4870-93c0-8fb42d6206b7" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP10" } ] }, "measurementType": { "@id": "#annotation_value/d4cd611d-b0ab-45b4-80da-bf4658e45389", "annotationValue": "Methylation Beta Value", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/NCIT_C164051", "termSource": "NCIT" }, "processSequence": [ { "@id": "#process/5132469344", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133932000" } ], "name": "DNA_extraction_XOE1", "nextProcess": { "@id": "#process/5132469296" }, "outputs": [ { "@id": "#material/extract-5132471792" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5132469296", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134647888" }, "inputs": [ { "@id": "#material/extract-5132471792" } ], "name": "methylation_profiling_XOE1", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5132469344" } }, { "@id": "#process/5132471408", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5134467568" } ], "name": "DNA_extraction_XOE2", "nextProcess": { "@id": "#process/5132470880" }, "outputs": [ { "@id": "#material/extract-5132470496" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5132470880", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134647888" }, "inputs": [ { "@id": "#material/extract-5132470496" } ], "name": "methylation_profiling_XOE2", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5132471408" } }, { "@id": "#process/5133742432", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133764544" } ], "name": "DNA_extraction_XOE3", "nextProcess": { "@id": "#process/5133742528" }, "outputs": [ { "@id": "#material/extract-5133742288" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5133742528", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134647888" }, "inputs": [ { "@id": "#material/extract-5133742288" } ], "name": "methylation_profiling_XOE3", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133742432" } }, { "@id": "#process/5133742672", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133746080" } ], "name": "DNA_extraction_XOE4", "nextProcess": { "@id": "#process/5133742624" }, "outputs": [ { "@id": "#material/extract-5133742336" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5133742624", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134647888" }, "inputs": [ { "@id": "#material/extract-5133742336" } ], "name": "methylation_profiling_XOE4", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133742672" } }, { "@id": "#process/5133743680", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133887952" } ], "name": "DNA_extraction_XOE5", "nextProcess": { "@id": "#process/5133743632" }, "outputs": [ { "@id": "#material/extract-5133742576" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5133743632", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134647888" }, "inputs": [ { "@id": "#material/extract-5133742576" } ], "name": "methylation_profiling_XOE5", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133743680" } }, { "@id": "#process/5134006304", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133852832" } ], "name": "DNA_extraction_XOE6", "nextProcess": { "@id": "#process/5134005536" }, "outputs": [ { "@id": "#material/extract-5133742720" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5134005536", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134647888" }, "inputs": [ { "@id": "#material/extract-5133742720" } ], "name": "methylation_profiling_XOE6", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134006304" } }, { "@id": "#process/5134004720", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133855376" } ], "name": "DNA_extraction_XOE7", "nextProcess": { "@id": "#process/5134005104" }, "outputs": [ { "@id": "#material/extract-5133743728" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5134005104", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134647888" }, "inputs": [ { "@id": "#material/extract-5133743728" } ], "name": "methylation_profiling_XOE7", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134004720" } }, { "@id": "#process/5134004528", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133771440" } ], "name": "DNA_extraction_XOE8", "nextProcess": { "@id": "#process/5134005584" }, "outputs": [ { "@id": "#material/extract-5134005728" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5134005584", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134647888" }, "inputs": [ { "@id": "#material/extract-5134005728" } ], "name": "methylation_profiling_XOE8", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134004528" } }, { "@id": "#process/5134005392", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133773648" } ], "name": "DNA_extraction_XOE9", "nextProcess": { "@id": "#process/5134004576" }, "outputs": [ { "@id": "#material/extract-5134004864" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5134004576", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134647888" }, "inputs": [ { "@id": "#material/extract-5134004864" } ], "name": "methylation_profiling_XOE9", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134005392" } }, { "@id": "#process/5134602000", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132734720" }, "inputs": [ { "@id": "#sample/5133898608" } ], "name": "DNA_extraction_XOE10", "nextProcess": { "@id": "#process/5134601136" }, "outputs": [ { "@id": "#material/extract-5133772256" } ], "parameterValues": [], "performer": "" }, { "@id": "#process/5134601136", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134647888" }, "inputs": [ { "@id": "#material/extract-5133772256" } ], "name": "methylation_profiling_XOE10", "outputs": [], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134602000" } } ], "technologyPlatform": { "@id": "#annotation_value/733857c9-925c-4bbd-afea-3df31d530190", "annotationValue": "Illumina Infinium MethylationEPIC BeadChip", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/OBI_0002131", "termSource": "OBI" }, "technologyType": { "@id": "#annotation_value/6f8b477d-9837-4eb5-b39e-3c3e5aaf0746", "annotationValue": "DNA methylation profiling by array assay", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/OBI_0001332", "termSource": "OBI" }, "unitCategories": [] }, { "@id": "#5132734816", "characteristicCategories": [], "comments": [], "dataFiles": [ { "@id": "#data/rawspectraldatafile-5132471696", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132471504", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132470928", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5131054000", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5131053760", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132471696", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132471504", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132470928", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5131054000", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5131053760", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132471696", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132471504", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132470928", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5131054000", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5131053760", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132471696", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132471504", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132470928", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5131054000", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5131053760", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132471696", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132471504", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132470928", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5131054000", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5131053760", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132471696", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132471504", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132470928", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5131054000", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5131053760", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132471696", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132471504", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132470928", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5131054000", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5131053760", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132471696", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132471504", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132470928", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5131054000", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5131053760", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132471696", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132471504", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132470928", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5131054000", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5131053760", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132471696", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132471504", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132470928", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5131054000", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5131053760", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" } ], "filename": "a_assay_metabolomics_amines.txt", "materials": { "otherMaterials": [ { "@id": "#material/extract-5134004288", "characteristics": [], "comments": [], "name": "extract_XOM1 ", "type": "Extract Name" }, { "@id": "#material/labeledextract-5134004480", "characteristics": [], "comments": [], "name": "labeled_XOM1 ", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133877840", "characteristics": [], "comments": [], "name": "extract_XOM2", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133877744", "characteristics": [], "comments": [], "name": "labeled_XOM2", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133906752", "characteristics": [], "comments": [], "name": "extract_XOM3", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133906656", "characteristics": [], "comments": [], "name": "labeled_XOM3", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133871712", "characteristics": [], "comments": [], "name": "extract_XOM4", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133871808", "characteristics": [], "comments": [], "name": "labeled_XOM4", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133838368", "characteristics": [], "comments": [], "name": "extract_XOM5", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133838464", "characteristics": [], "comments": [], "name": "labeled_XOM5", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133768112", "characteristics": [], "comments": [], "name": "extract_XOM6", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133768208", "characteristics": [], "comments": [], "name": "labeled_XOM6", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133714240", "characteristics": [], "comments": [], "name": "extract_XOM7", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133714336", "characteristics": [], "comments": [], "name": "labeled_XOM7", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133418704", "characteristics": [], "comments": [], "name": "extract_XOM8", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133418800", "characteristics": [], "comments": [], "name": "labeled_XOM8", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133422112", "characteristics": [], "comments": [], "name": "extract_XOM9", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133422208", "characteristics": [], "comments": [], "name": "labeled_XOM9", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133581232", "characteristics": [], "comments": [], "name": "extract_XOM10", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133581328", "characteristics": [], "comments": [], "name": "labeled_XOM10", "type": "Labeled Extract Name" } ], "samples": [ { "@id": "#sample/5131652112", "characteristics": [ { "category": { "@id": "#annotation_value/8f7c82c8-04cb-4359-8172-cf4688f8fb1a" }, "comments": [], "value": { "@id": "#annotation_value/e5c6328d-3078-4843-bb60-e972841d973a", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/5b7b28a8-08b4-411f-8584-07aac82b0aed" }, "comments": [], "value": { "@id": "#annotation_value/7de471eb-3b77-4cd8-b626-74d45da76acc", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP1" }, { "@id": "#sample/5134467904", "characteristics": [ { "category": { "@id": "#annotation_value/156494f1-b054-467f-a359-625b49449d05" }, "comments": [], "value": { "@id": "#annotation_value/325a9ca3-6d43-4641-93e4-7c649dcb5667", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/bb6730d4-572e-4361-bd38-9ec7477e4fb6" }, "comments": [], "value": { "@id": "#annotation_value/a6845f85-ae09-4ed0-a9ed-073b0d38f042", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP2" }, { "@id": "#sample/5133765264", "characteristics": [ { "category": { "@id": "#annotation_value/fb654798-a544-45bd-818d-48e1fd1a3c21" }, "comments": [], "value": { "@id": "#annotation_value/d96c0430-8e4e-4515-af6e-50b8902a6c49", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/a3b84bb8-198d-48ba-9eb9-fb3710db8583" }, "comments": [], "value": { "@id": "#annotation_value/b22f6902-59a7-4293-bd8e-1923fad1b63b", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP3" }, { "@id": "#sample/5133763248", "characteristics": [ { "category": { "@id": "#annotation_value/b6b4e23c-abf8-47b4-bf0f-a2d2bc2f6e56" }, "comments": [], "value": { "@id": "#annotation_value/e63da56c-18b1-4513-a4fd-6965d87022da", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/8d4ff784-e1d6-4115-beb4-c6f5565aa7e0" }, "comments": [], "value": { "@id": "#annotation_value/80ffc6f3-cbde-4294-84ba-88756df8847e", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP4" }, { "@id": "#sample/5133887232", "characteristics": [ { "category": { "@id": "#annotation_value/53978777-0c1e-4713-9359-6737d6962225" }, "comments": [], "value": { "@id": "#annotation_value/3a7b6a8a-b146-433d-bc94-c0088180d196", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/2ae50526-cd78-4738-bed7-980f9961e99d" }, "comments": [], "value": { "@id": "#annotation_value/475b8488-8a20-4b84-bb27-8083e076b141", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP5" }, { "@id": "#sample/5133888912", "characteristics": [ { "category": { "@id": "#annotation_value/a1846f10-6d55-46ee-bd28-9bb1b84aec63" }, "comments": [], "value": { "@id": "#annotation_value/6116a9f7-fa78-43b0-9ae5-641ed1c98c50", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/da74013e-ddd2-477c-9298-607f95fb357e" }, "comments": [], "value": { "@id": "#annotation_value/44ab3240-997c-42bf-aca2-109ab1a6dfc4", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP6" }, { "@id": "#sample/5133854656", "characteristics": [ { "category": { "@id": "#annotation_value/ea7ca2a9-7996-4056-afd7-bf28ca344dc7" }, "comments": [], "value": { "@id": "#annotation_value/dfe224d1-4f10-414c-aa27-f8dac4fd1c82", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/a17622f3-634e-4e92-ad76-33ea37ad682b" }, "comments": [], "value": { "@id": "#annotation_value/5492ae09-2201-40b0-af7e-358018c918a9", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP7" }, { "@id": "#sample/5133856672", "characteristics": [ { "category": { "@id": "#annotation_value/4e2e76d8-ca72-4903-b633-5a06a534c7d3" }, "comments": [], "value": { "@id": "#annotation_value/e215204c-fab3-4f08-a495-a06884709b83", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/74d41d03-4e7e-4ec6-8f21-b2163e1e1c6f" }, "comments": [], "value": { "@id": "#annotation_value/a215d192-8c7a-425c-b61e-096d74bf4d71", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP8" }, { "@id": "#sample/5133772928", "characteristics": [ { "category": { "@id": "#annotation_value/a070a6a8-af41-4fa8-a5f4-cb72033357fe" }, "comments": [], "value": { "@id": "#annotation_value/dbf7f334-1eb1-4992-9f96-876c7738f012", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/8c72c9a1-2753-479c-9302-84f23ba76513" }, "comments": [], "value": { "@id": "#annotation_value/b2fd35ae-c52e-446f-8c0d-98561f948803", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP9" }, { "@id": "#sample/5133897888", "characteristics": [ { "category": { "@id": "#annotation_value/c49cd52f-2ddb-479e-900b-b5435218f843" }, "comments": [], "value": { "@id": "#annotation_value/f10760a6-ec9c-4cb1-afdd-98525cf2ed72", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/a6c760fd-d319-4963-a18d-4f57b535a591" }, "comments": [], "value": { "@id": "#annotation_value/e01a2bfa-8adc-4cbe-a9e5-7f832991d1f2", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP10" } ] }, "measurementType": { "@id": "#annotation_value/befbed53-f64e-4057-b8af-0c997c06dd56", "annotationValue": "targeted metabolite profiling", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/MSIO_0000100", "termSource": "MSIO" }, "processSequence": [ { "@id": "#process/5134005488", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5131652112" } ], "name": "", "nextProcess": { "@id": "#process/5134138336" }, "outputs": [ { "@id": "#material/extract-5134004288" } ], "parameterValues": [ { "@id": "#parameter_value/5134006016", "category": { "@id": "#parameter/5132067216" }, "value": { "@id": "#annotation_value/1f0dc8a0-6dd8-4558-89c9-da620b346a0b", "annotationValue": "1 uL borate buffer (pH 8.8) with AQC reagent", "comments": [], "termAccession": "", "termSource": "" } }, { "@id": "#parameter_value/5134006208", "category": { "@id": "#parameter/5134005296" }, "value": "AQC" } ], "performer": "" }, { "@id": "#process/5134138336", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5134004288" } ], "name": "", "nextProcess": { "@id": "#process/5132544608" }, "outputs": [ { "@id": "#material/labeledextract-5134004480" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134005488" } }, { "@id": "#process/5132544608", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5134004480" } ], "name": "chromatography_XOM1 ", "nextProcess": { "@id": "#process/5133901104" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5134138288", "category": { "@id": "#parameter/5134139248" }, "value": "Agilent 1290 Infinity II" }, { "@id": "#parameter_value/5134138528", "category": { "@id": "#parameter/5134139296" }, "value": "Accq-Tag Ultra column (waters + FURHTER SPECS?)" }, { "@id": "#parameter_value/5132544800", "category": { "@id": "#parameter/5132545664" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5134138336" } }, { "@id": "#process/5133901104", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM1 ", "nextProcess": { "@id": "#process/5133901056" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "parameterValues": [ { "@id": "#parameter_value/5132545856", "category": { "@id": "#parameter/5132544464" }, "value": "positive" }, { "@id": "#parameter_value/5132152784", "category": { "@id": "#parameter/5132151440" }, "value": "5-2000?" }, { "@id": "#parameter_value/5132152688", "category": { "@id": "#parameter/5132152640" }, "value": "AB SCIEX Qtrap 6500" }, { "@id": "#parameter_value/5132152256", "category": { "@id": "#parameter/5132151152" }, "value": "ESI" }, { "@id": "#parameter_value/5132151824", "category": { "@id": "#parameter/5132151968" }, "value": "triple quadrupole linear ion trap" } ], "performer": "", "previousProcess": { "@id": "#process/5132544608" } }, { "@id": "#process/5133901056", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "name": "data_transformation_XOM1 ", "nextProcess": { "@id": "#process/5133901008" }, "outputs": [ { "@id": "#data/normalizationname-5132471504" }, { "@id": "#data/derivedspectraldatafile-5132470928" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133901104" } }, { "@id": "#process/5133901008", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132471504" } ], "name": "metabolite_identification_XOM1 ", "outputs": [ { "@id": "#data/datatransformationname-5131054000" }, { "@id": "#data/metaboliteassignmentfile-5131053760" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133901056" } }, { "@id": "#process/5133877792", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5134467904" } ], "name": "", "nextProcess": { "@id": "#process/5133877696" }, "outputs": [ { "@id": "#material/extract-5133877840" } ], "parameterValues": [ { "@id": "#parameter_value/5133878128", "category": { "@id": "#parameter/5133900912" }, "value": { "@id": "#annotation_value/cf4aefb2-04f9-4b8c-ac96-26fefa788150", "annotationValue": "1 uL borate buffer (pH 8.8) with AQC reagent", "comments": [], "termAccession": "", "termSource": "" } }, { "@id": "#parameter_value/5133878032", "category": { "@id": "#parameter/5133877936" }, "value": "AQC" } ], "performer": "" }, { "@id": "#process/5133877696", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133877840" } ], "name": "", "nextProcess": { "@id": "#process/5133890080" }, "outputs": [ { "@id": "#material/labeledextract-5133877744" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133877792" } }, { "@id": "#process/5133890080", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133877744" } ], "name": "chromatography_XOM2", "nextProcess": { "@id": "#process/5133891616" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133877552", "category": { "@id": "#parameter/5133877456" }, "value": "Agilent 1290 Infinity II" }, { "@id": "#parameter_value/5133889600", "category": { "@id": "#parameter/5133889696" }, "value": "Accq-Tag Ultra column (waters + FURHTER SPECS?)" }, { "@id": "#parameter_value/5133889888", "category": { "@id": "#parameter/5133889984" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133877696" } }, { "@id": "#process/5133891616", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM2", "nextProcess": { "@id": "#process/5133891664" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "parameterValues": [ { "@id": "#parameter_value/5133890224", "category": { "@id": "#parameter/5133890320" }, "value": "positive" }, { "@id": "#parameter_value/5133890512", "category": { "@id": "#parameter/5133890608" }, "value": "5-2000?" }, { "@id": "#parameter_value/5133890800", "category": { "@id": "#parameter/5133890896" }, "value": "AB SCIEX Qtrap 6500" }, { "@id": "#parameter_value/5133891088", "category": { "@id": "#parameter/5133891184" }, "value": "ESI" }, { "@id": "#parameter_value/5133891376", "category": { "@id": "#parameter/5133891472" }, "value": "triple quadrupole linear ion trap" } ], "performer": "", "previousProcess": { "@id": "#process/5133890080" } }, { "@id": "#process/5133891664", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "name": "data_transformation_XOM2", "nextProcess": { "@id": "#process/5133891712" }, "outputs": [ { "@id": "#data/normalizationname-5132471504" }, { "@id": "#data/derivedspectraldatafile-5132470928" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133891616" } }, { "@id": "#process/5133891712", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132471504" } ], "name": "metabolite_identification_XOM2", "outputs": [ { "@id": "#data/datatransformationname-5131054000" }, { "@id": "#data/metaboliteassignmentfile-5131053760" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133891664" } }, { "@id": "#process/5133906704", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133765264" } ], "name": "", "nextProcess": { "@id": "#process/5133906608" }, "outputs": [ { "@id": "#material/extract-5133906752" } ], "parameterValues": [ { "@id": "#parameter_value/5133907040", "category": { "@id": "#parameter/5133900816" }, "value": { "@id": "#annotation_value/93cbaa4c-2161-4183-9be1-4967b67be2eb", "annotationValue": "1 uL borate buffer (pH 8.8) with AQC reagent", "comments": [], "termAccession": "", "termSource": "" } }, { "@id": "#parameter_value/5133906944", "category": { "@id": "#parameter/5133906848" }, "value": "AQC" } ], "performer": "" }, { "@id": "#process/5133906608", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133906752" } ], "name": "", "nextProcess": { "@id": "#process/5133869360" }, "outputs": [ { "@id": "#material/labeledextract-5133906656" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133906704" } }, { "@id": "#process/5133869360", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133906656" } ], "name": "chromatography_XOM3", "nextProcess": { "@id": "#process/5133870896" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133906464", "category": { "@id": "#parameter/5133906368" }, "value": "Agilent 1290 Infinity II" }, { "@id": "#parameter_value/5133906176", "category": { "@id": "#parameter/5133906080" }, "value": "Accq-Tag Ultra column (waters + FURHTER SPECS?)" }, { "@id": "#parameter_value/5133869168", "category": { "@id": "#parameter/5133869264" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133906608" } }, { "@id": "#process/5133870896", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM3", "nextProcess": { "@id": "#process/5133870944" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "parameterValues": [ { "@id": "#parameter_value/5133869552", "category": { "@id": "#parameter/5132641808" }, "value": "positive" }, { "@id": "#parameter_value/5133869792", "category": { "@id": "#parameter/5133869888" }, "value": "5-2000?" }, { "@id": "#parameter_value/5133870080", "category": { "@id": "#parameter/5133870176" }, "value": "AB SCIEX Qtrap 6500" }, { "@id": "#parameter_value/5133870368", "category": { "@id": "#parameter/5133870464" }, "value": "ESI" }, { "@id": "#parameter_value/5133870656", "category": { "@id": "#parameter/5133870752" }, "value": "triple quadrupole linear ion trap" } ], "performer": "", "previousProcess": { "@id": "#process/5133869360" } }, { "@id": "#process/5133870944", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "name": "data_transformation_XOM3", "nextProcess": { "@id": "#process/5133870992" }, "outputs": [ { "@id": "#data/normalizationname-5132471504" }, { "@id": "#data/derivedspectraldatafile-5132470928" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133870896" } }, { "@id": "#process/5133870992", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132471504" } ], "name": "metabolite_identification_XOM3", "outputs": [ { "@id": "#data/datatransformationname-5131054000" }, { "@id": "#data/metaboliteassignmentfile-5131053760" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133870944" } }, { "@id": "#process/5133871760", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133763248" } ], "name": "", "nextProcess": { "@id": "#process/5133872384" }, "outputs": [ { "@id": "#material/extract-5133871712" } ], "parameterValues": [ { "@id": "#parameter_value/5133871424", "category": { "@id": "#parameter/5133893536" }, "value": { "@id": "#annotation_value/34c838e3-848c-426e-984a-e401f677d5dc", "annotationValue": "1 uL borate buffer (pH 8.8) with AQC reagent", "comments": [], "termAccession": "", "termSource": "" } }, { "@id": "#parameter_value/5133871520", "category": { "@id": "#parameter/5133871616" }, "value": "AQC" } ], "performer": "" }, { "@id": "#process/5133872384", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133871712" } ], "name": "", "nextProcess": { "@id": "#process/5131404864" }, "outputs": [ { "@id": "#material/labeledextract-5133871808" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133871760" } }, { "@id": "#process/5131404864", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133871808" } ], "name": "chromatography_XOM4", "nextProcess": { "@id": "#process/5133837552" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133872528", "category": { "@id": "#parameter/5133872624" }, "value": "Agilent 1290 Infinity II" }, { "@id": "#parameter_value/5133872816", "category": { "@id": "#parameter/5133872912" }, "value": "Accq-Tag Ultra column (waters + FURHTER SPECS?)" }, { "@id": "#parameter_value/5133772160", "category": { "@id": "#parameter/5132641232" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133872384" } }, { "@id": "#process/5133837552", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM4", "nextProcess": { "@id": "#process/5133837600" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "parameterValues": [ { "@id": "#parameter_value/5133766416", "category": { "@id": "#parameter/5133765648" }, "value": "positive" }, { "@id": "#parameter_value/5133836448", "category": { "@id": "#parameter/5133836544" }, "value": "5-2000?" }, { "@id": "#parameter_value/5133836736", "category": { "@id": "#parameter/5133836832" }, "value": "AB SCIEX Qtrap 6500" }, { "@id": "#parameter_value/5133837024", "category": { "@id": "#parameter/5133837120" }, "value": "ESI" }, { "@id": "#parameter_value/5133837312", "category": { "@id": "#parameter/5133837408" }, "value": "triple quadrupole linear ion trap" } ], "performer": "", "previousProcess": { "@id": "#process/5131404864" } }, { "@id": "#process/5133837600", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "name": "data_transformation_XOM4", "nextProcess": { "@id": "#process/5133837648" }, "outputs": [ { "@id": "#data/normalizationname-5132471504" }, { "@id": "#data/derivedspectraldatafile-5132470928" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133837552" } }, { "@id": "#process/5133837648", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132471504" } ], "name": "metabolite_identification_XOM4", "outputs": [ { "@id": "#data/datatransformationname-5131054000" }, { "@id": "#data/metaboliteassignmentfile-5131053760" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133837600" } }, { "@id": "#process/5133838416", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133887232" } ], "name": "", "nextProcess": { "@id": "#process/5133838512" }, "outputs": [ { "@id": "#material/extract-5133838368" } ], "parameterValues": [ { "@id": "#parameter_value/5133838080", "category": { "@id": "#parameter/5133871184" }, "value": { "@id": "#annotation_value/a976afaf-dbb8-41bf-b73e-3c79313b005d", "annotationValue": "1 uL borate buffer (pH 8.8) with AQC reagent", "comments": [], "termAccession": "", "termSource": "" } }, { "@id": "#parameter_value/5133838176", "category": { "@id": "#parameter/5133838272" }, "value": "AQC" } ], "performer": "" }, { "@id": "#process/5133838512", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133838368" } ], "name": "", "nextProcess": { "@id": "#process/5133839424" }, "outputs": [ { "@id": "#material/labeledextract-5133838464" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133838416" } }, { "@id": "#process/5133839424", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133838464" } ], "name": "chromatography_XOM5", "nextProcess": { "@id": "#process/5133767296" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133838656", "category": { "@id": "#parameter/5133838752" }, "value": "Agilent 1290 Infinity II" }, { "@id": "#parameter_value/5133838944", "category": { "@id": "#parameter/5133839040" }, "value": "Accq-Tag Ultra column (waters + FURHTER SPECS?)" }, { "@id": "#parameter_value/5133839232", "category": { "@id": "#parameter/5133839328" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133838512" } }, { "@id": "#process/5133767296", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM5", "nextProcess": { "@id": "#process/5133767344" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "parameterValues": [ { "@id": "#parameter_value/5133839568", "category": { "@id": "#parameter/5133839664" }, "value": "positive" }, { "@id": "#parameter_value/5133839856", "category": { "@id": "#parameter/5133839952" }, "value": "5-2000?" }, { "@id": "#parameter_value/5133840144", "category": { "@id": "#parameter/5133840240" }, "value": "AB SCIEX Qtrap 6500" }, { "@id": "#parameter_value/5133766768", "category": { "@id": "#parameter/5133766864" }, "value": "ESI" }, { "@id": "#parameter_value/5133767056", "category": { "@id": "#parameter/5133767152" }, "value": "triple quadrupole linear ion trap" } ], "performer": "", "previousProcess": { "@id": "#process/5133839424" } }, { "@id": "#process/5133767344", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "name": "data_transformation_XOM5", "nextProcess": { "@id": "#process/5133767392" }, "outputs": [ { "@id": "#data/normalizationname-5132471504" }, { "@id": "#data/derivedspectraldatafile-5132470928" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133767296" } }, { "@id": "#process/5133767392", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132471504" } ], "name": "metabolite_identification_XOM5", "outputs": [ { "@id": "#data/datatransformationname-5131054000" }, { "@id": "#data/metaboliteassignmentfile-5131053760" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133767344" } }, { "@id": "#process/5133768160", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133888912" } ], "name": "", "nextProcess": { "@id": "#process/5133768256" }, "outputs": [ { "@id": "#material/extract-5133768112" } ], "parameterValues": [ { "@id": "#parameter_value/5133767824", "category": { "@id": "#parameter/5133837840" }, "value": { "@id": "#annotation_value/17286445-4db2-4464-ad6a-ddb2d5f3cade", "annotationValue": "1 uL borate buffer (pH 8.8) with AQC reagent", "comments": [], "termAccession": "", "termSource": "" } }, { "@id": "#parameter_value/5133767920", "category": { "@id": "#parameter/5133768016" }, "value": "AQC" } ], "performer": "" }, { "@id": "#process/5133768256", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133768112" } ], "name": "", "nextProcess": { "@id": "#process/5133769168" }, "outputs": [ { "@id": "#material/labeledextract-5133768208" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133768160" } }, { "@id": "#process/5133769168", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133768208" } ], "name": "chromatography_XOM6", "nextProcess": { "@id": "#process/5133770704" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133768400", "category": { "@id": "#parameter/5133768496" }, "value": "Agilent 1290 Infinity II" }, { "@id": "#parameter_value/5133768688", "category": { "@id": "#parameter/5133768784" }, "value": "Accq-Tag Ultra column (waters + FURHTER SPECS?)" }, { "@id": "#parameter_value/5133768976", "category": { "@id": "#parameter/5133769072" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133768256" } }, { "@id": "#process/5133770704", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM6", "nextProcess": { "@id": "#process/5133713472" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "parameterValues": [ { "@id": "#parameter_value/5133769312", "category": { "@id": "#parameter/5133769408" }, "value": "positive" }, { "@id": "#parameter_value/5133769600", "category": { "@id": "#parameter/5133769696" }, "value": "5-2000?" }, { "@id": "#parameter_value/5133769888", "category": { "@id": "#parameter/5133769984" }, "value": "AB SCIEX Qtrap 6500" }, { "@id": "#parameter_value/5133770176", "category": { "@id": "#parameter/5133770272" }, "value": "ESI" }, { "@id": "#parameter_value/5133770464", "category": { "@id": "#parameter/5133770560" }, "value": "triple quadrupole linear ion trap" } ], "performer": "", "previousProcess": { "@id": "#process/5133769168" } }, { "@id": "#process/5133713472", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "name": "data_transformation_XOM6", "nextProcess": { "@id": "#process/5133713520" }, "outputs": [ { "@id": "#data/normalizationname-5132471504" }, { "@id": "#data/derivedspectraldatafile-5132470928" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133770704" } }, { "@id": "#process/5133713520", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132471504" } ], "name": "metabolite_identification_XOM6", "outputs": [ { "@id": "#data/datatransformationname-5131054000" }, { "@id": "#data/metaboliteassignmentfile-5131053760" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133713472" } }, { "@id": "#process/5133714288", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133854656" } ], "name": "", "nextProcess": { "@id": "#process/5133714384" }, "outputs": [ { "@id": "#material/extract-5133714240" } ], "parameterValues": [ { "@id": "#parameter_value/5133713952", "category": { "@id": "#parameter/5133767584" }, "value": { "@id": "#annotation_value/6ff76274-ac5c-4a1a-b9b0-2fe5b19579df", "annotationValue": "1 uL borate buffer (pH 8.8) with AQC reagent", "comments": [], "termAccession": "", "termSource": "" } }, { "@id": "#parameter_value/5133714048", "category": { "@id": "#parameter/5133714144" }, "value": "AQC" } ], "performer": "" }, { "@id": "#process/5133714384", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133714240" } ], "name": "", "nextProcess": { "@id": "#process/5133715296" }, "outputs": [ { "@id": "#material/labeledextract-5133714336" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133714288" } }, { "@id": "#process/5133715296", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133714336" } ], "name": "chromatography_XOM7", "nextProcess": { "@id": "#process/5133716832" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133714528", "category": { "@id": "#parameter/5133714624" }, "value": "Agilent 1290 Infinity II" }, { "@id": "#parameter_value/5133714816", "category": { "@id": "#parameter/5133714912" }, "value": "Accq-Tag Ultra column (waters + FURHTER SPECS?)" }, { "@id": "#parameter_value/5133715104", "category": { "@id": "#parameter/5133715200" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133714384" } }, { "@id": "#process/5133716832", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM7", "nextProcess": { "@id": "#process/5133716880" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "parameterValues": [ { "@id": "#parameter_value/5133715440", "category": { "@id": "#parameter/5133715536" }, "value": "positive" }, { "@id": "#parameter_value/5133715728", "category": { "@id": "#parameter/5133715824" }, "value": "5-2000?" }, { "@id": "#parameter_value/5133716016", "category": { "@id": "#parameter/5133716112" }, "value": "AB SCIEX Qtrap 6500" }, { "@id": "#parameter_value/5133716304", "category": { "@id": "#parameter/5133716400" }, "value": "ESI" }, { "@id": "#parameter_value/5133716592", "category": { "@id": "#parameter/5133716688" }, "value": "triple quadrupole linear ion trap" } ], "performer": "", "previousProcess": { "@id": "#process/5133715296" } }, { "@id": "#process/5133716880", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "name": "data_transformation_XOM7", "nextProcess": { "@id": "#process/5133716928" }, "outputs": [ { "@id": "#data/normalizationname-5132471504" }, { "@id": "#data/derivedspectraldatafile-5132470928" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133716832" } }, { "@id": "#process/5133716928", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132471504" } ], "name": "metabolite_identification_XOM7", "outputs": [ { "@id": "#data/datatransformationname-5131054000" }, { "@id": "#data/metaboliteassignmentfile-5131053760" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133716880" } }, { "@id": "#process/5133418752", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133856672" } ], "name": "", "nextProcess": { "@id": "#process/5133418848" }, "outputs": [ { "@id": "#material/extract-5133418704" } ], "parameterValues": [ { "@id": "#parameter_value/5133717360", "category": { "@id": "#parameter/5133717168" }, "value": { "@id": "#annotation_value/48bdfef9-9cc4-4546-9cf4-70881dee31a8", "annotationValue": "1 uL borate buffer (pH 8.8) with AQC reagent", "comments": [], "termAccession": "", "termSource": "" } }, { "@id": "#parameter_value/5133418560", "category": { "@id": "#parameter/5133717456" }, "value": "AQC" } ], "performer": "" }, { "@id": "#process/5133418848", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133418704" } ], "name": "", "nextProcess": { "@id": "#process/5133419760" }, "outputs": [ { "@id": "#material/labeledextract-5133418800" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133418752" } }, { "@id": "#process/5133419760", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133418800" } ], "name": "chromatography_XOM8", "nextProcess": { "@id": "#process/5133421296" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133418992", "category": { "@id": "#parameter/5133419088" }, "value": "Agilent 1290 Infinity II" }, { "@id": "#parameter_value/5133419280", "category": { "@id": "#parameter/5133419376" }, "value": "Accq-Tag Ultra column (waters + FURHTER SPECS?)" }, { "@id": "#parameter_value/5133419568", "category": { "@id": "#parameter/5133419664" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133418848" } }, { "@id": "#process/5133421296", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM8", "nextProcess": { "@id": "#process/5133421344" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "parameterValues": [ { "@id": "#parameter_value/5133419904", "category": { "@id": "#parameter/5133420000" }, "value": "positive" }, { "@id": "#parameter_value/5133420192", "category": { "@id": "#parameter/5133420288" }, "value": "5-2000?" }, { "@id": "#parameter_value/5133420480", "category": { "@id": "#parameter/5133420576" }, "value": "AB SCIEX Qtrap 6500" }, { "@id": "#parameter_value/5133420768", "category": { "@id": "#parameter/5133420864" }, "value": "ESI" }, { "@id": "#parameter_value/5133421056", "category": { "@id": "#parameter/5133421152" }, "value": "triple quadrupole linear ion trap" } ], "performer": "", "previousProcess": { "@id": "#process/5133419760" } }, { "@id": "#process/5133421344", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "name": "data_transformation_XOM8", "nextProcess": { "@id": "#process/5133421392" }, "outputs": [ { "@id": "#data/normalizationname-5132471504" }, { "@id": "#data/derivedspectraldatafile-5132470928" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133421296" } }, { "@id": "#process/5133421392", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132471504" } ], "name": "metabolite_identification_XOM8", "outputs": [ { "@id": "#data/datatransformationname-5131054000" }, { "@id": "#data/metaboliteassignmentfile-5131053760" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133421344" } }, { "@id": "#process/5133422160", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133772928" } ], "name": "", "nextProcess": { "@id": "#process/5133422256" }, "outputs": [ { "@id": "#material/extract-5133422112" } ], "parameterValues": [ { "@id": "#parameter_value/5133421824", "category": { "@id": "#parameter/5133717120" }, "value": { "@id": "#annotation_value/33c14a44-ddd8-48e4-8341-36e9271e2250", "annotationValue": "1 uL borate buffer (pH 8.8) with AQC reagent", "comments": [], "termAccession": "", "termSource": "" } }, { "@id": "#parameter_value/5133421920", "category": { "@id": "#parameter/5133422016" }, "value": "AQC" } ], "performer": "" }, { "@id": "#process/5133422256", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133422112" } ], "name": "", "nextProcess": { "@id": "#process/5133578880" }, "outputs": [ { "@id": "#material/labeledextract-5133422208" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133422160" } }, { "@id": "#process/5133578880", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133422208" } ], "name": "chromatography_XOM9", "nextProcess": { "@id": "#process/5133580416" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133422400", "category": { "@id": "#parameter/5133422496" }, "value": "Agilent 1290 Infinity II" }, { "@id": "#parameter_value/5133578400", "category": { "@id": "#parameter/5133578496" }, "value": "Accq-Tag Ultra column (waters + FURHTER SPECS?)" }, { "@id": "#parameter_value/5133578688", "category": { "@id": "#parameter/5133578784" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133422256" } }, { "@id": "#process/5133580416", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM9", "nextProcess": { "@id": "#process/5133580464" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "parameterValues": [ { "@id": "#parameter_value/5133579024", "category": { "@id": "#parameter/5133579120" }, "value": "positive" }, { "@id": "#parameter_value/5133579312", "category": { "@id": "#parameter/5133579408" }, "value": "5-2000?" }, { "@id": "#parameter_value/5133579600", "category": { "@id": "#parameter/5133579696" }, "value": "AB SCIEX Qtrap 6500" }, { "@id": "#parameter_value/5133579888", "category": { "@id": "#parameter/5133579984" }, "value": "ESI" }, { "@id": "#parameter_value/5133580176", "category": { "@id": "#parameter/5133580272" }, "value": "triple quadrupole linear ion trap" } ], "performer": "", "previousProcess": { "@id": "#process/5133578880" } }, { "@id": "#process/5133580464", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "name": "data_transformation_XOM9", "nextProcess": { "@id": "#process/5133580512" }, "outputs": [ { "@id": "#data/normalizationname-5132471504" }, { "@id": "#data/derivedspectraldatafile-5132470928" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133580416" } }, { "@id": "#process/5133580512", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132471504" } ], "name": "metabolite_identification_XOM9", "outputs": [ { "@id": "#data/datatransformationname-5131054000" }, { "@id": "#data/metaboliteassignmentfile-5131053760" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133580464" } }, { "@id": "#process/5133581280", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133897888" } ], "name": "", "nextProcess": { "@id": "#process/5133581376" }, "outputs": [ { "@id": "#material/extract-5133581232" } ], "parameterValues": [ { "@id": "#parameter_value/5133580944", "category": { "@id": "#parameter/5133421584" }, "value": { "@id": "#annotation_value/68a24d9c-a7dc-46ac-9dae-6578ff1a54b8", "annotationValue": "1 uL borate buffer (pH 8.8) with AQC reagent", "comments": [], "termAccession": "", "termSource": "" } }, { "@id": "#parameter_value/5133581040", "category": { "@id": "#parameter/5133581136" }, "value": "AQC" } ], "performer": "" }, { "@id": "#process/5133581376", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133581232" } ], "name": "", "nextProcess": { "@id": "#process/5133582288" }, "outputs": [ { "@id": "#material/labeledextract-5133581328" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133581280" } }, { "@id": "#process/5133582288", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133581328" } ], "name": "chromatography_XOM10", "nextProcess": { "@id": "#process/5133436432" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133581520", "category": { "@id": "#parameter/5133581616" }, "value": "Agilent 1290 Infinity II" }, { "@id": "#parameter_value/5133581808", "category": { "@id": "#parameter/5133581904" }, "value": "Accq-Tag Ultra column (waters + FURHTER SPECS?)" }, { "@id": "#parameter_value/5133582096", "category": { "@id": "#parameter/5133582192" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133581376" } }, { "@id": "#process/5133436432", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM10", "nextProcess": { "@id": "#process/5133436480" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "parameterValues": [ { "@id": "#parameter_value/5133435040", "category": { "@id": "#parameter/5133435136" }, "value": "positive" }, { "@id": "#parameter_value/5133435328", "category": { "@id": "#parameter/5133435424" }, "value": "5-2000?" }, { "@id": "#parameter_value/5133435616", "category": { "@id": "#parameter/5133435712" }, "value": "AB SCIEX Qtrap 6500" }, { "@id": "#parameter_value/5133435904", "category": { "@id": "#parameter/5133436000" }, "value": "ESI" }, { "@id": "#parameter_value/5133436192", "category": { "@id": "#parameter/5133436288" }, "value": "triple quadrupole linear ion trap" } ], "performer": "", "previousProcess": { "@id": "#process/5133582288" } }, { "@id": "#process/5133436480", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132471696" } ], "name": "data_transformation_XOM10", "nextProcess": { "@id": "#process/5133436528" }, "outputs": [ { "@id": "#data/normalizationname-5132471504" }, { "@id": "#data/derivedspectraldatafile-5132470928" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133436432" } }, { "@id": "#process/5133436528", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132471504" } ], "name": "metabolite_identification_XOM10", "outputs": [ { "@id": "#data/datatransformationname-5131054000" }, { "@id": "#data/metaboliteassignmentfile-5131053760" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133436480" } } ], "technologyPlatform": "", "technologyType": { "@id": "#annotation_value/f65aa52b-23e9-4a88-8295-6743f88e7373", "annotationValue": "liquid chromatography-mass spectrometry", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0000524", "termSource": "CHMO" }, "unitCategories": [] }, { "@id": "#5132734672", "characteristicCategories": [], "comments": [], "dataFiles": [ { "@id": "#data/rawspectraldatafile-5134466880", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5134465632", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5134465728", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5134466640", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5133853792", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5134466880", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5134465632", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5134465728", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5134466640", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5133853792", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5134466880", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5134465632", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5134465728", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5134466640", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5133853792", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5134466880", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5134465632", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5134465728", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5134466640", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5133853792", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5134466880", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5134465632", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5134465728", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5134466640", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5133853792", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5134466880", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5134465632", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5134465728", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5134466640", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5133853792", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5134466880", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5134465632", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5134465728", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5134466640", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5133853792", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5134466880", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5134465632", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5134465728", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5134466640", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5133853792", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5134466880", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5134465632", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5134465728", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5134466640", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5133853792", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5134466880", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5134465632", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5134465728", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5134466640", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5133853792", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" } ], "filename": "a_assay_metabolomics_OA.txt", "materials": { "otherMaterials": [ { "@id": "#material/extract-5133880288", "characteristics": [], "comments": [], "name": "extract_XOM1 ", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133880480", "characteristics": [], "comments": [], "name": "labeled_XOM1 ", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133606480", "characteristics": [], "comments": [], "name": "extract_XOM2", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133606576", "characteristics": [], "comments": [], "name": "labeled_XOM2", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133592272", "characteristics": [], "comments": [], "name": "extract_XOM3", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133592176", "characteristics": [], "comments": [], "name": "labeled_XOM3", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133900480", "characteristics": [], "comments": [], "name": "extract_XOM4", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133900240", "characteristics": [], "comments": [], "name": "labeled_XOM4", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5131749360", "characteristics": [], "comments": [], "name": "extract_XOM5", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133455472", "characteristics": [], "comments": [], "name": "labeled_XOM5", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133458688", "characteristics": [], "comments": [], "name": "extract_XOM6", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133458784", "characteristics": [], "comments": [], "name": "labeled_XOM6", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133470256", "characteristics": [], "comments": [], "name": "extract_XOM7", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133470352", "characteristics": [], "comments": [], "name": "labeled_XOM7", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133432672", "characteristics": [], "comments": [], "name": "extract_XOM8", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133432768", "characteristics": [], "comments": [], "name": "labeled_XOM8", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133538448", "characteristics": [], "comments": [], "name": "extract_XOM9", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133538544", "characteristics": [], "comments": [], "name": "labeled_XOM9", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133525440", "characteristics": [], "comments": [], "name": "extract_XOM10", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133525536", "characteristics": [], "comments": [], "name": "labeled_XOM10", "type": "Labeled Extract Name" } ], "samples": [ { "@id": "#sample/5131652112", "characteristics": [ { "category": { "@id": "#annotation_value/8f7c82c8-04cb-4359-8172-cf4688f8fb1a" }, "comments": [], "value": { "@id": "#annotation_value/e5c6328d-3078-4843-bb60-e972841d973a", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/5b7b28a8-08b4-411f-8584-07aac82b0aed" }, "comments": [], "value": { "@id": "#annotation_value/7de471eb-3b77-4cd8-b626-74d45da76acc", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP1" }, { "@id": "#sample/5134467904", "characteristics": [ { "category": { "@id": "#annotation_value/156494f1-b054-467f-a359-625b49449d05" }, "comments": [], "value": { "@id": "#annotation_value/325a9ca3-6d43-4641-93e4-7c649dcb5667", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/bb6730d4-572e-4361-bd38-9ec7477e4fb6" }, "comments": [], "value": { "@id": "#annotation_value/a6845f85-ae09-4ed0-a9ed-073b0d38f042", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP2" }, { "@id": "#sample/5133765264", "characteristics": [ { "category": { "@id": "#annotation_value/fb654798-a544-45bd-818d-48e1fd1a3c21" }, "comments": [], "value": { "@id": "#annotation_value/d96c0430-8e4e-4515-af6e-50b8902a6c49", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/a3b84bb8-198d-48ba-9eb9-fb3710db8583" }, "comments": [], "value": { "@id": "#annotation_value/b22f6902-59a7-4293-bd8e-1923fad1b63b", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP3" }, { "@id": "#sample/5133763248", "characteristics": [ { "category": { "@id": "#annotation_value/b6b4e23c-abf8-47b4-bf0f-a2d2bc2f6e56" }, "comments": [], "value": { "@id": "#annotation_value/e63da56c-18b1-4513-a4fd-6965d87022da", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/8d4ff784-e1d6-4115-beb4-c6f5565aa7e0" }, "comments": [], "value": { "@id": "#annotation_value/80ffc6f3-cbde-4294-84ba-88756df8847e", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP4" }, { "@id": "#sample/5133887232", "characteristics": [ { "category": { "@id": "#annotation_value/53978777-0c1e-4713-9359-6737d6962225" }, "comments": [], "value": { "@id": "#annotation_value/3a7b6a8a-b146-433d-bc94-c0088180d196", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/2ae50526-cd78-4738-bed7-980f9961e99d" }, "comments": [], "value": { "@id": "#annotation_value/475b8488-8a20-4b84-bb27-8083e076b141", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP5" }, { "@id": "#sample/5133888912", "characteristics": [ { "category": { "@id": "#annotation_value/a1846f10-6d55-46ee-bd28-9bb1b84aec63" }, "comments": [], "value": { "@id": "#annotation_value/6116a9f7-fa78-43b0-9ae5-641ed1c98c50", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/da74013e-ddd2-477c-9298-607f95fb357e" }, "comments": [], "value": { "@id": "#annotation_value/44ab3240-997c-42bf-aca2-109ab1a6dfc4", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP6" }, { "@id": "#sample/5133854656", "characteristics": [ { "category": { "@id": "#annotation_value/ea7ca2a9-7996-4056-afd7-bf28ca344dc7" }, "comments": [], "value": { "@id": "#annotation_value/dfe224d1-4f10-414c-aa27-f8dac4fd1c82", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/a17622f3-634e-4e92-ad76-33ea37ad682b" }, "comments": [], "value": { "@id": "#annotation_value/5492ae09-2201-40b0-af7e-358018c918a9", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP7" }, { "@id": "#sample/5133856672", "characteristics": [ { "category": { "@id": "#annotation_value/4e2e76d8-ca72-4903-b633-5a06a534c7d3" }, "comments": [], "value": { "@id": "#annotation_value/e215204c-fab3-4f08-a495-a06884709b83", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/74d41d03-4e7e-4ec6-8f21-b2163e1e1c6f" }, "comments": [], "value": { "@id": "#annotation_value/a215d192-8c7a-425c-b61e-096d74bf4d71", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP8" }, { "@id": "#sample/5133772928", "characteristics": [ { "category": { "@id": "#annotation_value/a070a6a8-af41-4fa8-a5f4-cb72033357fe" }, "comments": [], "value": { "@id": "#annotation_value/dbf7f334-1eb1-4992-9f96-876c7738f012", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/8c72c9a1-2753-479c-9302-84f23ba76513" }, "comments": [], "value": { "@id": "#annotation_value/b2fd35ae-c52e-446f-8c0d-98561f948803", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP9" }, { "@id": "#sample/5133897888", "characteristics": [ { "category": { "@id": "#annotation_value/c49cd52f-2ddb-479e-900b-b5435218f843" }, "comments": [], "value": { "@id": "#annotation_value/f10760a6-ec9c-4cb1-afdd-98525cf2ed72", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/a6c760fd-d319-4963-a18d-4f57b535a591" }, "comments": [], "value": { "@id": "#annotation_value/e01a2bfa-8adc-4cbe-a9e5-7f832991d1f2", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP10" } ] }, "measurementType": { "@id": "#annotation_value/2b7631f8-4d70-4365-9de8-4303cd4a0a1c", "annotationValue": "targeted metabolite profiling", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/MSIO_0000100", "termSource": "MSIO" }, "processSequence": [ { "@id": "#process/5133880336", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5131652112" } ], "name": "", "nextProcess": { "@id": "#process/5133880432" }, "outputs": [ { "@id": "#material/extract-5133880288" } ], "parameterValues": [ { "@id": "#parameter_value/5133853744", "category": { "@id": "#parameter/5133853840" }, "value": "1 uL pyridine" }, { "@id": "#parameter_value/5133946352", "category": { "@id": "#parameter/5133945440" }, "value": "oximation followed by silylation" } ], "performer": "" }, { "@id": "#process/5133880432", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133880288" } ], "name": "", "nextProcess": { "@id": "#process/5133880960" }, "outputs": [ { "@id": "#material/labeledextract-5133880480" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133880336" } }, { "@id": "#process/5133880960", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133880480" } ], "name": "chromatography_XOM1 ", "nextProcess": { "@id": "#process/5133605760" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133880624", "category": { "@id": "#parameter/5133880144" }, "value": "Agilent Technologies 7890A" }, { "@id": "#parameter_value/5133880576", "category": { "@id": "#parameter/5133880768" }, "value": "HP-5MS UI (5% Phenyl Methyl Silox), 30 m x 0.25 m ID column with a film thickness of 25 um" }, { "@id": "#parameter_value/5133880864", "category": { "@id": "#parameter/5133881008" }, "value": "low polarity" } ], "performer": "", "previousProcess": { "@id": "#process/5133880432" } }, { "@id": "#process/5133605760", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM1 ", "nextProcess": { "@id": "#process/5133605808" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "parameterValues": [ { "@id": "#parameter_value/5133881200", "category": { "@id": "#parameter/5133880048" }, "value": "positive" }, { "@id": "#parameter_value/5133879808", "category": { "@id": "#parameter/5133879856" }, "value": "50-500" }, { "@id": "#parameter_value/5133879568", "category": { "@id": "#parameter/5133879616" }, "value": "Agilent Technologies mass selective detector (MSD 5975C) and MultiPurpose Sampler (MPS, MXY016-02A, GERSTEL)" }, { "@id": "#parameter_value/5133605328", "category": { "@id": "#parameter/5133879232" }, "value": "EI (70 eV)" }, { "@id": "#parameter_value/5133605520", "category": { "@id": "#parameter/5133605616" }, "value": "single-quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133880960" } }, { "@id": "#process/5133605808", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "name": "data_transformation_XOM1 ", "nextProcess": { "@id": "#process/5133605856" }, "outputs": [ { "@id": "#data/normalizationname-5134465632" }, { "@id": "#data/derivedspectraldatafile-5134465728" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133605760" } }, { "@id": "#process/5133605856", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5134465632" } ], "name": "metabolite_identification_XOM1 ", "outputs": [ { "@id": "#data/datatransformationname-5134466640" }, { "@id": "#data/metaboliteassignmentfile-5133853792" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133605808" } }, { "@id": "#process/5133606528", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5134467904" } ], "name": "", "nextProcess": { "@id": "#process/5133606624" }, "outputs": [ { "@id": "#material/extract-5133606480" } ], "parameterValues": [ { "@id": "#parameter_value/5133605952", "category": { "@id": "#parameter/5133854080" }, "value": "1 uL pyridine" }, { "@id": "#parameter_value/5133606288", "category": { "@id": "#parameter/5133606384" }, "value": "oximation followed by silylation" } ], "performer": "" }, { "@id": "#process/5133606624", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133606480" } ], "name": "", "nextProcess": { "@id": "#process/5133603264" }, "outputs": [ { "@id": "#material/labeledextract-5133606576" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133606528" } }, { "@id": "#process/5133603264", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133606576" } ], "name": "chromatography_XOM2", "nextProcess": { "@id": "#process/5133592992" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133606768", "category": { "@id": "#parameter/5133606864" }, "value": "Agilent Technologies 7890A" }, { "@id": "#parameter_value/5133603744", "category": { "@id": "#parameter/5133603648" }, "value": "HP-5MS UI (5% Phenyl Methyl Silox), 30 m x 0.25 m ID column with a film thickness of 25 um" }, { "@id": "#parameter_value/5133603456", "category": { "@id": "#parameter/5133603360" }, "value": "low polarity" } ], "performer": "", "previousProcess": { "@id": "#process/5133606624" } }, { "@id": "#process/5133592992", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM2", "nextProcess": { "@id": "#process/5133592944" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "parameterValues": [ { "@id": "#parameter_value/5133603024", "category": { "@id": "#parameter/5133602928" }, "value": "positive" }, { "@id": "#parameter_value/5133619360", "category": { "@id": "#parameter/5133619456" }, "value": "50-500" }, { "@id": "#parameter_value/5133619648", "category": { "@id": "#parameter/5133619744" }, "value": "Agilent Technologies mass selective detector (MSD 5975C) and MultiPurpose Sampler (MPS, MXY016-02A, GERSTEL)" }, { "@id": "#parameter_value/5133623248", "category": { "@id": "#parameter/5133623152" }, "value": "EI (70 eV)" }, { "@id": "#parameter_value/5133593184", "category": { "@id": "#parameter/5133622960" }, "value": "single-quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133603264" } }, { "@id": "#process/5133592944", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "name": "data_transformation_XOM2", "nextProcess": { "@id": "#process/5133592896" }, "outputs": [ { "@id": "#data/normalizationname-5134465632" }, { "@id": "#data/derivedspectraldatafile-5134465728" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133592992" } }, { "@id": "#process/5133592896", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5134465632" } ], "name": "metabolite_identification_XOM2", "outputs": [ { "@id": "#data/datatransformationname-5134466640" }, { "@id": "#data/metaboliteassignmentfile-5133853792" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133592944" } }, { "@id": "#process/5133592224", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133765264" } ], "name": "", "nextProcess": { "@id": "#process/5133592128" }, "outputs": [ { "@id": "#material/extract-5133592272" } ], "parameterValues": [ { "@id": "#parameter_value/5133592800", "category": { "@id": "#parameter/5133606048" }, "value": "1 uL pyridine" }, { "@id": "#parameter_value/5133592464", "category": { "@id": "#parameter/5133592368" }, "value": "oximation followed by silylation" } ], "performer": "" }, { "@id": "#process/5133592128", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133592272" } ], "name": "", "nextProcess": { "@id": "#process/5133591216" }, "outputs": [ { "@id": "#material/labeledextract-5133592176" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133592224" } }, { "@id": "#process/5133591216", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133592176" } ], "name": "chromatography_XOM3", "nextProcess": { "@id": "#process/5133899184" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133591984", "category": { "@id": "#parameter/5133591888" }, "value": "Agilent Technologies 7890A" }, { "@id": "#parameter_value/5133591696", "category": { "@id": "#parameter/5133591600" }, "value": "HP-5MS UI (5% Phenyl Methyl Silox), 30 m x 0.25 m ID column with a film thickness of 25 um" }, { "@id": "#parameter_value/5133591408", "category": { "@id": "#parameter/5133591312" }, "value": "low polarity" } ], "performer": "", "previousProcess": { "@id": "#process/5133592128" } }, { "@id": "#process/5133899184", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM3", "nextProcess": { "@id": "#process/5133899136" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "parameterValues": [ { "@id": "#parameter_value/5133591072", "category": { "@id": "#parameter/5133102816" }, "value": "positive" }, { "@id": "#parameter_value/5133590880", "category": { "@id": "#parameter/5133590784" }, "value": "50-500" }, { "@id": "#parameter_value/5133103056", "category": { "@id": "#parameter/5133076848" }, "value": "Agilent Technologies mass selective detector (MSD 5975C) and MultiPurpose Sampler (MPS, MXY016-02A, GERSTEL)" }, { "@id": "#parameter_value/5133899904", "category": { "@id": "#parameter/5133899808" }, "value": "EI (70 eV)" }, { "@id": "#parameter_value/5133899760", "category": { "@id": "#parameter/5133899520" }, "value": "single-quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133591216" } }, { "@id": "#process/5133899136", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "name": "data_transformation_XOM3", "nextProcess": { "@id": "#process/5133899088" }, "outputs": [ { "@id": "#data/normalizationname-5134465632" }, { "@id": "#data/derivedspectraldatafile-5134465728" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133899184" } }, { "@id": "#process/5133899088", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5134465632" } ], "name": "metabolite_identification_XOM3", "outputs": [ { "@id": "#data/datatransformationname-5134466640" }, { "@id": "#data/metaboliteassignmentfile-5133853792" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133899136" } }, { "@id": "#process/5133900336", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133763248" } ], "name": "", "nextProcess": { "@id": "#process/5133900288" }, "outputs": [ { "@id": "#material/extract-5133900480" } ], "parameterValues": [ { "@id": "#parameter_value/5133899040", "category": { "@id": "#parameter/5133592704" }, "value": "1 uL pyridine" }, { "@id": "#parameter_value/5133901200", "category": { "@id": "#parameter/5133900144" }, "value": "oximation followed by silylation" } ], "performer": "" }, { "@id": "#process/5133900288", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133900480" } ], "name": "", "nextProcess": { "@id": "#process/5132862752" }, "outputs": [ { "@id": "#material/labeledextract-5133900240" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133900336" } }, { "@id": "#process/5132862752", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133900240" } ], "name": "chromatography_XOM4", "nextProcess": { "@id": "#process/5134607312" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133900528", "category": { "@id": "#parameter/5133900672" }, "value": "Agilent Technologies 7890A" }, { "@id": "#parameter_value/5133901344", "category": { "@id": "#parameter/5133901488" }, "value": "HP-5MS UI (5% Phenyl Methyl Silox), 30 m x 0.25 m ID column with a film thickness of 25 um" }, { "@id": "#parameter_value/5132862176", "category": { "@id": "#parameter/5131652160" }, "value": "low polarity" } ], "performer": "", "previousProcess": { "@id": "#process/5133900288" } }, { "@id": "#process/5134607312", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM4", "nextProcess": { "@id": "#process/5132837696" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "parameterValues": [ { "@id": "#parameter_value/5132861888", "category": { "@id": "#parameter/5132862272" }, "value": "positive" }, { "@id": "#parameter_value/5132863424", "category": { "@id": "#parameter/5132863280" }, "value": "50-500" }, { "@id": "#parameter_value/5134609328", "category": { "@id": "#parameter/5134609088" }, "value": "Agilent Technologies mass selective detector (MSD 5975C) and MultiPurpose Sampler (MPS, MXY016-02A, GERSTEL)" }, { "@id": "#parameter_value/5134608992", "category": { "@id": "#parameter/5134607552" }, "value": "EI (70 eV)" }, { "@id": "#parameter_value/5134607600", "category": { "@id": "#parameter/5134609424" }, "value": "single-quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5132862752" } }, { "@id": "#process/5132837696", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "name": "data_transformation_XOM4", "nextProcess": { "@id": "#process/5132838512" }, "outputs": [ { "@id": "#data/normalizationname-5134465632" }, { "@id": "#data/derivedspectraldatafile-5134465728" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134607312" } }, { "@id": "#process/5132838512", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5134465632" } ], "name": "metabolite_identification_XOM4", "outputs": [ { "@id": "#data/datatransformationname-5134466640" }, { "@id": "#data/metaboliteassignmentfile-5133853792" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5132837696" } }, { "@id": "#process/5133455424", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133887232" } ], "name": "", "nextProcess": { "@id": "#process/5133455520" }, "outputs": [ { "@id": "#material/extract-5131749360" } ], "parameterValues": [ { "@id": "#parameter_value/5131750608", "category": { "@id": "#parameter/5132840816" }, "value": "1 uL pyridine" }, { "@id": "#parameter_value/5131750224", "category": { "@id": "#parameter/5131750464" }, "value": "oximation followed by silylation" } ], "performer": "" }, { "@id": "#process/5133455520", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5131749360" } ], "name": "", "nextProcess": { "@id": "#process/5133456432" }, "outputs": [ { "@id": "#material/labeledextract-5133455472" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133455424" } }, { "@id": "#process/5133456432", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133455472" } ], "name": "chromatography_XOM5", "nextProcess": { "@id": "#process/5133457968" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133455664", "category": { "@id": "#parameter/5133455760" }, "value": "Agilent Technologies 7890A" }, { "@id": "#parameter_value/5133455952", "category": { "@id": "#parameter/5133456048" }, "value": "HP-5MS UI (5% Phenyl Methyl Silox), 30 m x 0.25 m ID column with a film thickness of 25 um" }, { "@id": "#parameter_value/5133456240", "category": { "@id": "#parameter/5133456336" }, "value": "low polarity" } ], "performer": "", "previousProcess": { "@id": "#process/5133455520" } }, { "@id": "#process/5133457968", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM5", "nextProcess": { "@id": "#process/5133458016" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "parameterValues": [ { "@id": "#parameter_value/5133456576", "category": { "@id": "#parameter/5133456672" }, "value": "positive" }, { "@id": "#parameter_value/5133456864", "category": { "@id": "#parameter/5133456960" }, "value": "50-500" }, { "@id": "#parameter_value/5133457152", "category": { "@id": "#parameter/5133457248" }, "value": "Agilent Technologies mass selective detector (MSD 5975C) and MultiPurpose Sampler (MPS, MXY016-02A, GERSTEL)" }, { "@id": "#parameter_value/5133457440", "category": { "@id": "#parameter/5133457536" }, "value": "EI (70 eV)" }, { "@id": "#parameter_value/5133457728", "category": { "@id": "#parameter/5133457824" }, "value": "single-quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133456432" } }, { "@id": "#process/5133458016", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "name": "data_transformation_XOM5", "nextProcess": { "@id": "#process/5133458064" }, "outputs": [ { "@id": "#data/normalizationname-5134465632" }, { "@id": "#data/derivedspectraldatafile-5134465728" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133457968" } }, { "@id": "#process/5133458064", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5134465632" } ], "name": "metabolite_identification_XOM5", "outputs": [ { "@id": "#data/datatransformationname-5134466640" }, { "@id": "#data/metaboliteassignmentfile-5133853792" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133458016" } }, { "@id": "#process/5133458736", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133888912" } ], "name": "", "nextProcess": { "@id": "#process/5133458832" }, "outputs": [ { "@id": "#material/extract-5133458688" } ], "parameterValues": [ { "@id": "#parameter_value/5133458160", "category": { "@id": "#parameter/5132840912" }, "value": "1 uL pyridine" }, { "@id": "#parameter_value/5133458496", "category": { "@id": "#parameter/5133458592" }, "value": "oximation followed by silylation" } ], "performer": "" }, { "@id": "#process/5133458832", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133458688" } ], "name": "", "nextProcess": { "@id": "#process/5133468000" }, "outputs": [ { "@id": "#material/labeledextract-5133458784" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133458736" } }, { "@id": "#process/5133468000", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133458784" } ], "name": "chromatography_XOM6", "nextProcess": { "@id": "#process/5133469536" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133458976", "category": { "@id": "#parameter/5133459072" }, "value": "Agilent Technologies 7890A" }, { "@id": "#parameter_value/5133459264", "category": { "@id": "#parameter/5133459360" }, "value": "HP-5MS UI (5% Phenyl Methyl Silox), 30 m x 0.25 m ID column with a film thickness of 25 um" }, { "@id": "#parameter_value/5133467808", "category": { "@id": "#parameter/5133467904" }, "value": "low polarity" } ], "performer": "", "previousProcess": { "@id": "#process/5133458832" } }, { "@id": "#process/5133469536", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM6", "nextProcess": { "@id": "#process/5133469584" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "parameterValues": [ { "@id": "#parameter_value/5133468144", "category": { "@id": "#parameter/5133468240" }, "value": "positive" }, { "@id": "#parameter_value/5133468432", "category": { "@id": "#parameter/5133468528" }, "value": "50-500" }, { "@id": "#parameter_value/5133468720", "category": { "@id": "#parameter/5133468816" }, "value": "Agilent Technologies mass selective detector (MSD 5975C) and MultiPurpose Sampler (MPS, MXY016-02A, GERSTEL)" }, { "@id": "#parameter_value/5133469008", "category": { "@id": "#parameter/5133469104" }, "value": "EI (70 eV)" }, { "@id": "#parameter_value/5133469296", "category": { "@id": "#parameter/5133469392" }, "value": "single-quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133468000" } }, { "@id": "#process/5133469584", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "name": "data_transformation_XOM6", "nextProcess": { "@id": "#process/5133469632" }, "outputs": [ { "@id": "#data/normalizationname-5134465632" }, { "@id": "#data/derivedspectraldatafile-5134465728" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133469536" } }, { "@id": "#process/5133469632", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5134465632" } ], "name": "metabolite_identification_XOM6", "outputs": [ { "@id": "#data/datatransformationname-5134466640" }, { "@id": "#data/metaboliteassignmentfile-5133853792" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133469584" } }, { "@id": "#process/5133470304", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133854656" } ], "name": "", "nextProcess": { "@id": "#process/5133470400" }, "outputs": [ { "@id": "#material/extract-5133470256" } ], "parameterValues": [ { "@id": "#parameter_value/5133469728", "category": { "@id": "#parameter/5133458256" }, "value": "1 uL pyridine" }, { "@id": "#parameter_value/5133470064", "category": { "@id": "#parameter/5133470160" }, "value": "oximation followed by silylation" } ], "performer": "" }, { "@id": "#process/5133470400", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133470256" } ], "name": "", "nextProcess": { "@id": "#process/5133471312" }, "outputs": [ { "@id": "#material/labeledextract-5133470352" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133470304" } }, { "@id": "#process/5133471312", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133470352" } ], "name": "chromatography_XOM7", "nextProcess": { "@id": "#process/5133431952" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133470544", "category": { "@id": "#parameter/5133470640" }, "value": "Agilent Technologies 7890A" }, { "@id": "#parameter_value/5133470832", "category": { "@id": "#parameter/5133470928" }, "value": "HP-5MS UI (5% Phenyl Methyl Silox), 30 m x 0.25 m ID column with a film thickness of 25 um" }, { "@id": "#parameter_value/5133471120", "category": { "@id": "#parameter/5133471216" }, "value": "low polarity" } ], "performer": "", "previousProcess": { "@id": "#process/5133470400" } }, { "@id": "#process/5133431952", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM7", "nextProcess": { "@id": "#process/5133432000" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "parameterValues": [ { "@id": "#parameter_value/5133471456", "category": { "@id": "#parameter/5133471552" }, "value": "positive" }, { "@id": "#parameter_value/5133430848", "category": { "@id": "#parameter/5133430944" }, "value": "50-500" }, { "@id": "#parameter_value/5133431136", "category": { "@id": "#parameter/5133431232" }, "value": "Agilent Technologies mass selective detector (MSD 5975C) and MultiPurpose Sampler (MPS, MXY016-02A, GERSTEL)" }, { "@id": "#parameter_value/5133431424", "category": { "@id": "#parameter/5133431520" }, "value": "EI (70 eV)" }, { "@id": "#parameter_value/5133431712", "category": { "@id": "#parameter/5133431808" }, "value": "single-quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133471312" } }, { "@id": "#process/5133432000", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "name": "data_transformation_XOM7", "nextProcess": { "@id": "#process/5133432048" }, "outputs": [ { "@id": "#data/normalizationname-5134465632" }, { "@id": "#data/derivedspectraldatafile-5134465728" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133431952" } }, { "@id": "#process/5133432048", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5134465632" } ], "name": "metabolite_identification_XOM7", "outputs": [ { "@id": "#data/datatransformationname-5134466640" }, { "@id": "#data/metaboliteassignmentfile-5133853792" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133432000" } }, { "@id": "#process/5133432720", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133856672" } ], "name": "", "nextProcess": { "@id": "#process/5133432816" }, "outputs": [ { "@id": "#material/extract-5133432672" } ], "parameterValues": [ { "@id": "#parameter_value/5133432144", "category": { "@id": "#parameter/5133469824" }, "value": "1 uL pyridine" }, { "@id": "#parameter_value/5133432480", "category": { "@id": "#parameter/5133432576" }, "value": "oximation followed by silylation" } ], "performer": "" }, { "@id": "#process/5133432816", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133432672" } ], "name": "", "nextProcess": { "@id": "#process/5133433728" }, "outputs": [ { "@id": "#material/labeledextract-5133432768" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133432720" } }, { "@id": "#process/5133433728", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133432768" } ], "name": "chromatography_XOM8", "nextProcess": { "@id": "#process/5133537728" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133432960", "category": { "@id": "#parameter/5133433056" }, "value": "Agilent Technologies 7890A" }, { "@id": "#parameter_value/5133433248", "category": { "@id": "#parameter/5133433344" }, "value": "HP-5MS UI (5% Phenyl Methyl Silox), 30 m x 0.25 m ID column with a film thickness of 25 um" }, { "@id": "#parameter_value/5133433536", "category": { "@id": "#parameter/5133433632" }, "value": "low polarity" } ], "performer": "", "previousProcess": { "@id": "#process/5133432816" } }, { "@id": "#process/5133537728", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM8", "nextProcess": { "@id": "#process/5133537776" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "parameterValues": [ { "@id": "#parameter_value/5133433872", "category": { "@id": "#parameter/5133433968" }, "value": "positive" }, { "@id": "#parameter_value/5133434160", "category": { "@id": "#parameter/5133434256" }, "value": "50-500" }, { "@id": "#parameter_value/5133434448", "category": { "@id": "#parameter/5133434544" }, "value": "Agilent Technologies mass selective detector (MSD 5975C) and MultiPurpose Sampler (MPS, MXY016-02A, GERSTEL)" }, { "@id": "#parameter_value/5133434736", "category": { "@id": "#parameter/5133434832" }, "value": "EI (70 eV)" }, { "@id": "#parameter_value/5133537488", "category": { "@id": "#parameter/5133537584" }, "value": "single-quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133433728" } }, { "@id": "#process/5133537776", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "name": "data_transformation_XOM8", "nextProcess": { "@id": "#process/5133537824" }, "outputs": [ { "@id": "#data/normalizationname-5134465632" }, { "@id": "#data/derivedspectraldatafile-5134465728" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133537728" } }, { "@id": "#process/5133537824", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5134465632" } ], "name": "metabolite_identification_XOM8", "outputs": [ { "@id": "#data/datatransformationname-5134466640" }, { "@id": "#data/metaboliteassignmentfile-5133853792" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133537776" } }, { "@id": "#process/5133538496", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133772928" } ], "name": "", "nextProcess": { "@id": "#process/5133538592" }, "outputs": [ { "@id": "#material/extract-5133538448" } ], "parameterValues": [ { "@id": "#parameter_value/5133537920", "category": { "@id": "#parameter/5133432240" }, "value": "1 uL pyridine" }, { "@id": "#parameter_value/5133538256", "category": { "@id": "#parameter/5133538352" }, "value": "oximation followed by silylation" } ], "performer": "" }, { "@id": "#process/5133538592", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133538448" } ], "name": "", "nextProcess": { "@id": "#process/5133539504" }, "outputs": [ { "@id": "#material/labeledextract-5133538544" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133538496" } }, { "@id": "#process/5133539504", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133538544" } ], "name": "chromatography_XOM9", "nextProcess": { "@id": "#process/5133541040" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133538736", "category": { "@id": "#parameter/5133538832" }, "value": "Agilent Technologies 7890A" }, { "@id": "#parameter_value/5133539024", "category": { "@id": "#parameter/5133539120" }, "value": "HP-5MS UI (5% Phenyl Methyl Silox), 30 m x 0.25 m ID column with a film thickness of 25 um" }, { "@id": "#parameter_value/5133539312", "category": { "@id": "#parameter/5133539408" }, "value": "low polarity" } ], "performer": "", "previousProcess": { "@id": "#process/5133538592" } }, { "@id": "#process/5133541040", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM9", "nextProcess": { "@id": "#process/5133541088" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "parameterValues": [ { "@id": "#parameter_value/5133539648", "category": { "@id": "#parameter/5133539744" }, "value": "positive" }, { "@id": "#parameter_value/5133539936", "category": { "@id": "#parameter/5133540032" }, "value": "50-500" }, { "@id": "#parameter_value/5133540224", "category": { "@id": "#parameter/5133540320" }, "value": "Agilent Technologies mass selective detector (MSD 5975C) and MultiPurpose Sampler (MPS, MXY016-02A, GERSTEL)" }, { "@id": "#parameter_value/5133540512", "category": { "@id": "#parameter/5133540608" }, "value": "EI (70 eV)" }, { "@id": "#parameter_value/5133540800", "category": { "@id": "#parameter/5133540896" }, "value": "single-quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133539504" } }, { "@id": "#process/5133541088", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "name": "data_transformation_XOM9", "nextProcess": { "@id": "#process/5133541136" }, "outputs": [ { "@id": "#data/normalizationname-5134465632" }, { "@id": "#data/derivedspectraldatafile-5134465728" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133541040" } }, { "@id": "#process/5133541136", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5134465632" } ], "name": "metabolite_identification_XOM9", "outputs": [ { "@id": "#data/datatransformationname-5134466640" }, { "@id": "#data/metaboliteassignmentfile-5133853792" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133541088" } }, { "@id": "#process/5133525488", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133897888" } ], "name": "", "nextProcess": { "@id": "#process/5133525584" }, "outputs": [ { "@id": "#material/extract-5133525440" } ], "parameterValues": [ { "@id": "#parameter_value/5133525056", "category": { "@id": "#parameter/5133541232" }, "value": "1 uL pyridine" }, { "@id": "#parameter_value/5133525248", "category": { "@id": "#parameter/5133525344" }, "value": "oximation followed by silylation" } ], "performer": "" }, { "@id": "#process/5133525584", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133525440" } ], "name": "", "nextProcess": { "@id": "#process/5133526496" }, "outputs": [ { "@id": "#material/labeledextract-5133525536" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133525488" } }, { "@id": "#process/5133526496", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133525536" } ], "name": "chromatography_XOM10", "nextProcess": { "@id": "#process/5133527936" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133525728", "category": { "@id": "#parameter/5133525824" }, "value": "Agilent Technologies 7890A" }, { "@id": "#parameter_value/5133526016", "category": { "@id": "#parameter/5133526112" }, "value": "HP-5MS UI (5% Phenyl Methyl Silox), 30 m x 0.25 m ID column with a film thickness of 25 um" }, { "@id": "#parameter_value/5133526304", "category": { "@id": "#parameter/5133526400" }, "value": "low polarity" } ], "performer": "", "previousProcess": { "@id": "#process/5133525584" } }, { "@id": "#process/5133527936", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM10", "nextProcess": { "@id": "#process/5133527984" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "parameterValues": [ { "@id": "#parameter_value/5133526640", "category": { "@id": "#parameter/5133526736" }, "value": "positive" }, { "@id": "#parameter_value/5133526928", "category": { "@id": "#parameter/5133527024" }, "value": "50-500" }, { "@id": "#parameter_value/5133527216", "category": { "@id": "#parameter/5133527312" }, "value": "Agilent Technologies mass selective detector (MSD 5975C) and MultiPurpose Sampler (MPS, MXY016-02A, GERSTEL)" }, { "@id": "#parameter_value/5133527504", "category": { "@id": "#parameter/5133527600" }, "value": "EI (70 eV)" }, { "@id": "#parameter_value/5133527792", "category": { "@id": "#parameter/5133580704" }, "value": "single-quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133526496" } }, { "@id": "#process/5133527984", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5134466880" } ], "name": "data_transformation_XOM10", "nextProcess": { "@id": "#process/5133528032" }, "outputs": [ { "@id": "#data/normalizationname-5134465632" }, { "@id": "#data/derivedspectraldatafile-5134465728" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133527936" } }, { "@id": "#process/5133528032", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5134465632" } ], "name": "metabolite_identification_XOM10", "outputs": [ { "@id": "#data/datatransformationname-5134466640" }, { "@id": "#data/metaboliteassignmentfile-5133853792" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133527984" } } ], "technologyPlatform": "", "technologyType": { "@id": "#annotation_value/158709ec-0ed3-4dbd-8102-9208091c56ea", "annotationValue": "gas chromatography-mass spectrometry", "comments": [], "termAccession": "", "termSource": "CHMO" }, "unitCategories": [] }, { "@id": "#5132147968", "characteristicCategories": [], "comments": [], "dataFiles": [ { "@id": "#data/rawspectraldatafile-5132906256", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132905584", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132904528", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5132905536", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5132905248", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132906256", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132905584", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132904528", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5132905536", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5132905248", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132906256", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132905584", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132904528", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5132905536", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5132905248", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132906256", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132905584", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132904528", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5132905536", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5132905248", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132906256", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132905584", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132904528", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5132905536", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5132905248", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132906256", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132905584", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132904528", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5132905536", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5132905248", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132906256", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132905584", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132904528", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5132905536", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5132905248", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132906256", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132905584", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132904528", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5132905536", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5132905248", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132906256", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132905584", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132904528", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5132905536", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5132905248", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" }, { "@id": "#data/rawspectraldatafile-5132906256", "comments": [], "name": "link/to/raw/data", "type": "Raw Spectral Data File" }, { "@id": "#data/normalizationname-5132905584", "comments": [], "name": "link/to/normalized_data", "type": "Normalization Name" }, { "@id": "#data/derivedspectraldatafile-5132904528", "comments": [], "name": "link/to/spectral_file", "type": "Derived Spectral Data File" }, { "@id": "#data/datatransformationname-5132905536", "comments": [], "name": "link/to/data_transformation_name", "type": "Data Transformation Name" }, { "@id": "#data/metaboliteassignmentfile-5132905248", "comments": [], "name": "link/to/MAF", "type": "Metabolite Assignment File" } ], "filename": "a_assay_metabolomics_steroids.txt", "materials": { "otherMaterials": [ { "@id": "#material/extract-5134169376", "characteristics": [], "comments": [], "name": "extract_XOM1 ", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133622480", "characteristics": [], "comments": [], "name": "labeled_XOM1 ", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133437344", "characteristics": [], "comments": [], "name": "extract_XOM2", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133437488", "characteristics": [], "comments": [], "name": "labeled_XOM2", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133515360", "characteristics": [], "comments": [], "name": "extract_XOM3", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133515264", "characteristics": [], "comments": [], "name": "labeled_XOM3", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5134540416", "characteristics": [], "comments": [], "name": "extract_XOM4", "type": "Extract Name" }, { "@id": "#material/labeledextract-5134540704", "characteristics": [], "comments": [], "name": "labeled_XOM4", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133878560", "characteristics": [], "comments": [], "name": "extract_XOM5", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133878512", "characteristics": [], "comments": [], "name": "labeled_XOM5", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133535984", "characteristics": [], "comments": [], "name": "extract_XOM6", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133536080", "characteristics": [], "comments": [], "name": "labeled_XOM6", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133494304", "characteristics": [], "comments": [], "name": "extract_XOM7", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133494400", "characteristics": [], "comments": [], "name": "labeled_XOM7", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133464912", "characteristics": [], "comments": [], "name": "extract_XOM8", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133465008", "characteristics": [], "comments": [], "name": "labeled_XOM8", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133652416", "characteristics": [], "comments": [], "name": "extract_XOM9", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133652512", "characteristics": [], "comments": [], "name": "labeled_XOM9", "type": "Labeled Extract Name" }, { "@id": "#material/extract-5133655728", "characteristics": [], "comments": [], "name": "extract_XOM10", "type": "Extract Name" }, { "@id": "#material/labeledextract-5133655824", "characteristics": [], "comments": [], "name": "labeled_XOM10", "type": "Labeled Extract Name" } ], "samples": [ { "@id": "#sample/5131652112", "characteristics": [ { "category": { "@id": "#annotation_value/8f7c82c8-04cb-4359-8172-cf4688f8fb1a" }, "comments": [], "value": { "@id": "#annotation_value/e5c6328d-3078-4843-bb60-e972841d973a", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/5b7b28a8-08b4-411f-8584-07aac82b0aed" }, "comments": [], "value": { "@id": "#annotation_value/7de471eb-3b77-4cd8-b626-74d45da76acc", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP1" }, { "@id": "#sample/5134467904", "characteristics": [ { "category": { "@id": "#annotation_value/156494f1-b054-467f-a359-625b49449d05" }, "comments": [], "value": { "@id": "#annotation_value/325a9ca3-6d43-4641-93e4-7c649dcb5667", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/bb6730d4-572e-4361-bd38-9ec7477e4fb6" }, "comments": [], "value": { "@id": "#annotation_value/a6845f85-ae09-4ed0-a9ed-073b0d38f042", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP2" }, { "@id": "#sample/5133765264", "characteristics": [ { "category": { "@id": "#annotation_value/fb654798-a544-45bd-818d-48e1fd1a3c21" }, "comments": [], "value": { "@id": "#annotation_value/d96c0430-8e4e-4515-af6e-50b8902a6c49", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/a3b84bb8-198d-48ba-9eb9-fb3710db8583" }, "comments": [], "value": { "@id": "#annotation_value/b22f6902-59a7-4293-bd8e-1923fad1b63b", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP3" }, { "@id": "#sample/5133763248", "characteristics": [ { "category": { "@id": "#annotation_value/b6b4e23c-abf8-47b4-bf0f-a2d2bc2f6e56" }, "comments": [], "value": { "@id": "#annotation_value/e63da56c-18b1-4513-a4fd-6965d87022da", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/8d4ff784-e1d6-4115-beb4-c6f5565aa7e0" }, "comments": [], "value": { "@id": "#annotation_value/80ffc6f3-cbde-4294-84ba-88756df8847e", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP4" }, { "@id": "#sample/5133887232", "characteristics": [ { "category": { "@id": "#annotation_value/53978777-0c1e-4713-9359-6737d6962225" }, "comments": [], "value": { "@id": "#annotation_value/3a7b6a8a-b146-433d-bc94-c0088180d196", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/2ae50526-cd78-4738-bed7-980f9961e99d" }, "comments": [], "value": { "@id": "#annotation_value/475b8488-8a20-4b84-bb27-8083e076b141", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP5" }, { "@id": "#sample/5133888912", "characteristics": [ { "category": { "@id": "#annotation_value/a1846f10-6d55-46ee-bd28-9bb1b84aec63" }, "comments": [], "value": { "@id": "#annotation_value/6116a9f7-fa78-43b0-9ae5-641ed1c98c50", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/da74013e-ddd2-477c-9298-607f95fb357e" }, "comments": [], "value": { "@id": "#annotation_value/44ab3240-997c-42bf-aca2-109ab1a6dfc4", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP6" }, { "@id": "#sample/5133854656", "characteristics": [ { "category": { "@id": "#annotation_value/ea7ca2a9-7996-4056-afd7-bf28ca344dc7" }, "comments": [], "value": { "@id": "#annotation_value/dfe224d1-4f10-414c-aa27-f8dac4fd1c82", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/a17622f3-634e-4e92-ad76-33ea37ad682b" }, "comments": [], "value": { "@id": "#annotation_value/5492ae09-2201-40b0-af7e-358018c918a9", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP7" }, { "@id": "#sample/5133856672", "characteristics": [ { "category": { "@id": "#annotation_value/4e2e76d8-ca72-4903-b633-5a06a534c7d3" }, "comments": [], "value": { "@id": "#annotation_value/e215204c-fab3-4f08-a495-a06884709b83", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/74d41d03-4e7e-4ec6-8f21-b2163e1e1c6f" }, "comments": [], "value": { "@id": "#annotation_value/a215d192-8c7a-425c-b61e-096d74bf4d71", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP8" }, { "@id": "#sample/5133772928", "characteristics": [ { "category": { "@id": "#annotation_value/a070a6a8-af41-4fa8-a5f4-cb72033357fe" }, "comments": [], "value": { "@id": "#annotation_value/dbf7f334-1eb1-4992-9f96-876c7738f012", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/8c72c9a1-2753-479c-9302-84f23ba76513" }, "comments": [], "value": { "@id": "#annotation_value/b2fd35ae-c52e-446f-8c0d-98561f948803", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP9" }, { "@id": "#sample/5133897888", "characteristics": [ { "category": { "@id": "#annotation_value/c49cd52f-2ddb-479e-900b-b5435218f843" }, "comments": [], "value": { "@id": "#annotation_value/f10760a6-ec9c-4cb1-afdd-98525cf2ed72", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/a6c760fd-d319-4963-a18d-4f57b535a591" }, "comments": [], "value": { "@id": "#annotation_value/e01a2bfa-8adc-4cbe-a9e5-7f832991d1f2", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP10" } ] }, "measurementType": { "@id": "#annotation_value/823e3bc1-dc09-4ecb-953f-d3bea8550290", "annotationValue": "targeted metabolite profiling", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/MSIO_0000100", "termSource": "MSIO" }, "processSequence": [ { "@id": "#process/5133886032", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5131652112" } ], "name": "", "nextProcess": { "@id": "#process/5133622432" }, "outputs": [ { "@id": "#material/extract-5134169376" } ], "parameterValues": [ { "@id": "#parameter_value/5132200688", "category": { "@id": "#parameter/5133541328" }, "value": "1 uL filtered urine" }, { "@id": "#parameter_value/5134169328", "category": { "@id": "#parameter/5133293456" }, "value": "NA" } ], "performer": "" }, { "@id": "#process/5133622432", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5134169376" } ], "name": "", "nextProcess": { "@id": "#process/5133621184" }, "outputs": [ { "@id": "#material/labeledextract-5133622480" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133886032" } }, { "@id": "#process/5133621184", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133622480" } ], "name": "chromatography_XOM1 ", "nextProcess": { "@id": "#process/5133438880" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133619936", "category": { "@id": "#parameter/5133620224" }, "value": "Agilent 1290" }, { "@id": "#parameter_value/5133619984", "category": { "@id": "#parameter/5133620512" }, "value": "Acquity UPLC CSH C18 column (Waters)" }, { "@id": "#parameter_value/5133620320", "category": { "@id": "#parameter/5133620992" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133622432" } }, { "@id": "#process/5133438880", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM1 ", "nextProcess": { "@id": "#process/5133437824" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "parameterValues": [ { "@id": "#parameter_value/5133621232", "category": { "@id": "#parameter/5133621712" }, "value": "switching positive and negative ion mode !! MAYBE SERPARATE INTO NEGATIVE AND POSITIVE ASSAY?" }, { "@id": "#parameter_value/5133621664", "category": { "@id": "#parameter/5133622000" }, "value": "5-3000?" }, { "@id": "#parameter_value/5133622576", "category": { "@id": "#parameter/5133622624" }, "value": "Agilent 6460" }, { "@id": "#parameter_value/5133604944", "category": { "@id": "#parameter/5133622528" }, "value": "ESI" }, { "@id": "#parameter_value/5133436624", "category": { "@id": "#parameter/5133436960" }, "value": "triple quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133621184" } }, { "@id": "#process/5133437824", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "name": "data_transformation_XOM1 ", "nextProcess": { "@id": "#process/5133437872" }, "outputs": [ { "@id": "#data/normalizationname-5132905584" }, { "@id": "#data/derivedspectraldatafile-5132904528" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133438880" } }, { "@id": "#process/5133437872", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132905584" } ], "name": "metabolite_identification_XOM1 ", "outputs": [ { "@id": "#data/datatransformationname-5132905536" }, { "@id": "#data/metaboliteassignmentfile-5132905248" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133437824" } }, { "@id": "#process/5133437392", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5134467904" } ], "name": "", "nextProcess": { "@id": "#process/5133438592" }, "outputs": [ { "@id": "#material/extract-5133437344" } ], "parameterValues": [ { "@id": "#parameter_value/5133438352", "category": { "@id": "#parameter/5132201888" }, "value": "1 uL filtered urine" }, { "@id": "#parameter_value/5133438112", "category": { "@id": "#parameter/5133438928" }, "value": "NA" } ], "performer": "" }, { "@id": "#process/5133438592", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133437344" } ], "name": "", "nextProcess": { "@id": "#process/5133593808" }, "outputs": [ { "@id": "#material/labeledextract-5133437488" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133437392" } }, { "@id": "#process/5133593808", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133437488" } ], "name": "chromatography_XOM2", "nextProcess": { "@id": "#process/5133516080" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133078384", "category": { "@id": "#parameter/5133077904" }, "value": "Agilent 1290" }, { "@id": "#parameter_value/5133074880", "category": { "@id": "#parameter/5133077712" }, "value": "Acquity UPLC CSH C18 column (Waters)" }, { "@id": "#parameter_value/5133593712", "category": { "@id": "#parameter/5131767616" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133438592" } }, { "@id": "#process/5133516080", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM2", "nextProcess": { "@id": "#process/5133516032" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "parameterValues": [ { "@id": "#parameter_value/5133593280", "category": { "@id": "#parameter/5133593760" }, "value": "switching positive and negative ion mode !! MAYBE SERPARATE INTO NEGATIVE AND POSITIVE ASSAY?" }, { "@id": "#parameter_value/5133594000", "category": { "@id": "#parameter/5133593568" }, "value": "5-3000?" }, { "@id": "#parameter_value/5133594576", "category": { "@id": "#parameter/5133594336" }, "value": "Agilent 6460" }, { "@id": "#parameter_value/5133593328", "category": { "@id": "#parameter/5133593952" }, "value": "ESI" }, { "@id": "#parameter_value/5133871856", "category": { "@id": "#parameter/5133872144" }, "value": "triple quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133593808" } }, { "@id": "#process/5133516032", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "name": "data_transformation_XOM2", "nextProcess": { "@id": "#process/5133515984" }, "outputs": [ { "@id": "#data/normalizationname-5132905584" }, { "@id": "#data/derivedspectraldatafile-5132904528" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133516080" } }, { "@id": "#process/5133515984", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132905584" } ], "name": "metabolite_identification_XOM2", "outputs": [ { "@id": "#data/datatransformationname-5132905536" }, { "@id": "#data/metaboliteassignmentfile-5132905248" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133516032" } }, { "@id": "#process/5133515312", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133765264" } ], "name": "", "nextProcess": { "@id": "#process/5133515216" }, "outputs": [ { "@id": "#material/extract-5133515360" } ], "parameterValues": [ { "@id": "#parameter_value/5133515888", "category": { "@id": "#parameter/5133436672" }, "value": "1 uL filtered urine" }, { "@id": "#parameter_value/5133515552", "category": { "@id": "#parameter/5133515456" }, "value": "NA" } ], "performer": "" }, { "@id": "#process/5133515216", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133515360" } ], "name": "", "nextProcess": { "@id": "#process/5133514304" }, "outputs": [ { "@id": "#material/labeledextract-5133515264" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133515312" } }, { "@id": "#process/5133514304", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133515264" } ], "name": "chromatography_XOM3", "nextProcess": { "@id": "#process/5133512864" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133515072", "category": { "@id": "#parameter/5133514976" }, "value": "Agilent 1290" }, { "@id": "#parameter_value/5133514784", "category": { "@id": "#parameter/5133514688" }, "value": "Acquity UPLC CSH C18 column (Waters)" }, { "@id": "#parameter_value/5133514496", "category": { "@id": "#parameter/5133514400" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133515216" } }, { "@id": "#process/5133512864", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM3", "nextProcess": { "@id": "#process/5133512816" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "parameterValues": [ { "@id": "#parameter_value/5133514160", "category": { "@id": "#parameter/5133514064" }, "value": "switching positive and negative ion mode !! MAYBE SERPARATE INTO NEGATIVE AND POSITIVE ASSAY?" }, { "@id": "#parameter_value/5133513872", "category": { "@id": "#parameter/5133513776" }, "value": "5-3000?" }, { "@id": "#parameter_value/5133513584", "category": { "@id": "#parameter/5133513488" }, "value": "Agilent 6460" }, { "@id": "#parameter_value/5133513296", "category": { "@id": "#parameter/5133513200" }, "value": "ESI" }, { "@id": "#parameter_value/5133513008", "category": { "@id": "#parameter/5133040992" }, "value": "triple quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133514304" } }, { "@id": "#process/5133512816", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "name": "data_transformation_XOM3", "nextProcess": { "@id": "#process/5133512768" }, "outputs": [ { "@id": "#data/normalizationname-5132905584" }, { "@id": "#data/derivedspectraldatafile-5132904528" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133512864" } }, { "@id": "#process/5133512768", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132905584" } ], "name": "metabolite_identification_XOM3", "outputs": [ { "@id": "#data/datatransformationname-5132905536" }, { "@id": "#data/metaboliteassignmentfile-5132905248" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133512816" } }, { "@id": "#process/5134537056", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133763248" } ], "name": "", "nextProcess": { "@id": "#process/5134536816" }, "outputs": [ { "@id": "#material/extract-5134540416" } ], "parameterValues": [ { "@id": "#parameter_value/5134537008", "category": { "@id": "#parameter/5133002688" }, "value": "1 uL filtered urine" }, { "@id": "#parameter_value/5134537248", "category": { "@id": "#parameter/5134537152" }, "value": "NA" } ], "performer": "" }, { "@id": "#process/5134536816", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5134540416" } ], "name": "", "nextProcess": { "@id": "#process/5132786608" }, "outputs": [ { "@id": "#material/labeledextract-5134540704" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5134537056" } }, { "@id": "#process/5132786608", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5134540704" } ], "name": "chromatography_XOM4", "nextProcess": { "@id": "#process/5132640320" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5134540272", "category": { "@id": "#parameter/5134536864" }, "value": "Agilent 1290" }, { "@id": "#parameter_value/5134540608", "category": { "@id": "#parameter/5134130960" }, "value": "Acquity UPLC CSH C18 column (Waters)" }, { "@id": "#parameter_value/5131651920", "category": { "@id": "#parameter/5133328496" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5134536816" } }, { "@id": "#process/5132640320", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM4", "nextProcess": { "@id": "#process/5132640896" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "parameterValues": [ { "@id": "#parameter_value/5132786896", "category": { "@id": "#parameter/5132786656" }, "value": "switching positive and negative ion mode !! MAYBE SERPARATE INTO NEGATIVE AND POSITIVE ASSAY?" }, { "@id": "#parameter_value/5132531552", "category": { "@id": "#parameter/5126386496" }, "value": "5-3000?" }, { "@id": "#parameter_value/5131130480", "category": { "@id": "#parameter/5130892624" }, "value": "Agilent 6460" }, { "@id": "#parameter_value/5132844816", "category": { "@id": "#parameter/5132094480" }, "value": "ESI" }, { "@id": "#parameter_value/5132641472", "category": { "@id": "#parameter/5131585136" }, "value": "triple quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5132786608" } }, { "@id": "#process/5132640896", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "name": "data_transformation_XOM4", "nextProcess": { "@id": "#process/5132641616" }, "outputs": [ { "@id": "#data/normalizationname-5132905584" }, { "@id": "#data/derivedspectraldatafile-5132904528" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5132640320" } }, { "@id": "#process/5132641616", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132905584" } ], "name": "metabolite_identification_XOM4", "outputs": [ { "@id": "#data/datatransformationname-5132905536" }, { "@id": "#data/metaboliteassignmentfile-5132905248" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5132640896" } }, { "@id": "#process/5133878416", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133887232" } ], "name": "", "nextProcess": { "@id": "#process/5133879136" }, "outputs": [ { "@id": "#material/extract-5133878560" } ], "parameterValues": [ { "@id": "#parameter_value/5132640800", "category": { "@id": "#parameter/5134540656" }, "value": "1 uL filtered urine" }, { "@id": "#parameter_value/5133878704", "category": { "@id": "#parameter/5133878992" }, "value": "NA" } ], "performer": "" }, { "@id": "#process/5133879136", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133878560" } ], "name": "", "nextProcess": { "@id": "#process/5133533728" }, "outputs": [ { "@id": "#material/labeledextract-5133878512" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133878416" } }, { "@id": "#process/5133533728", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133878512" } ], "name": "chromatography_XOM5", "nextProcess": { "@id": "#process/5133535264" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133878368", "category": { "@id": "#parameter/5133878464" }, "value": "Agilent 1290" }, { "@id": "#parameter_value/5133533248", "category": { "@id": "#parameter/5133533344" }, "value": "Acquity UPLC CSH C18 column (Waters)" }, { "@id": "#parameter_value/5133533536", "category": { "@id": "#parameter/5133533632" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133879136" } }, { "@id": "#process/5133535264", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM5", "nextProcess": { "@id": "#process/5133535312" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "parameterValues": [ { "@id": "#parameter_value/5133533872", "category": { "@id": "#parameter/5133533968" }, "value": "switching positive and negative ion mode !! MAYBE SERPARATE INTO NEGATIVE AND POSITIVE ASSAY?" }, { "@id": "#parameter_value/5133534160", "category": { "@id": "#parameter/5133534256" }, "value": "5-3000?" }, { "@id": "#parameter_value/5133534448", "category": { "@id": "#parameter/5133534544" }, "value": "Agilent 6460" }, { "@id": "#parameter_value/5133534736", "category": { "@id": "#parameter/5133534832" }, "value": "ESI" }, { "@id": "#parameter_value/5133535024", "category": { "@id": "#parameter/5133535120" }, "value": "triple quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133533728" } }, { "@id": "#process/5133535312", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "name": "data_transformation_XOM5", "nextProcess": { "@id": "#process/5133535360" }, "outputs": [ { "@id": "#data/normalizationname-5132905584" }, { "@id": "#data/derivedspectraldatafile-5132904528" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133535264" } }, { "@id": "#process/5133535360", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132905584" } ], "name": "metabolite_identification_XOM5", "outputs": [ { "@id": "#data/datatransformationname-5132905536" }, { "@id": "#data/metaboliteassignmentfile-5132905248" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133535312" } }, { "@id": "#process/5133536032", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133888912" } ], "name": "", "nextProcess": { "@id": "#process/5133536128" }, "outputs": [ { "@id": "#material/extract-5133535984" } ], "parameterValues": [ { "@id": "#parameter_value/5133535456", "category": { "@id": "#parameter/5132641568" }, "value": "1 uL filtered urine" }, { "@id": "#parameter_value/5133535792", "category": { "@id": "#parameter/5133535888" }, "value": "NA" } ], "performer": "" }, { "@id": "#process/5133536128", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133535984" } ], "name": "", "nextProcess": { "@id": "#process/5133537040" }, "outputs": [ { "@id": "#material/labeledextract-5133536080" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133536032" } }, { "@id": "#process/5133537040", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133536080" } ], "name": "chromatography_XOM6", "nextProcess": { "@id": "#process/5133493584" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133536272", "category": { "@id": "#parameter/5133536368" }, "value": "Agilent 1290" }, { "@id": "#parameter_value/5133536560", "category": { "@id": "#parameter/5133536656" }, "value": "Acquity UPLC CSH C18 column (Waters)" }, { "@id": "#parameter_value/5133536848", "category": { "@id": "#parameter/5133536944" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133536128" } }, { "@id": "#process/5133493584", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM6", "nextProcess": { "@id": "#process/5133493632" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "parameterValues": [ { "@id": "#parameter_value/5133492288", "category": { "@id": "#parameter/5133537232" }, "value": "switching positive and negative ion mode !! MAYBE SERPARATE INTO NEGATIVE AND POSITIVE ASSAY?" }, { "@id": "#parameter_value/5133492480", "category": { "@id": "#parameter/5133492576" }, "value": "5-3000?" }, { "@id": "#parameter_value/5133492768", "category": { "@id": "#parameter/5133492864" }, "value": "Agilent 6460" }, { "@id": "#parameter_value/5133493056", "category": { "@id": "#parameter/5133493152" }, "value": "ESI" }, { "@id": "#parameter_value/5133493344", "category": { "@id": "#parameter/5133493440" }, "value": "triple quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133537040" } }, { "@id": "#process/5133493632", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "name": "data_transformation_XOM6", "nextProcess": { "@id": "#process/5133493680" }, "outputs": [ { "@id": "#data/normalizationname-5132905584" }, { "@id": "#data/derivedspectraldatafile-5132904528" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133493584" } }, { "@id": "#process/5133493680", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132905584" } ], "name": "metabolite_identification_XOM6", "outputs": [ { "@id": "#data/datatransformationname-5132905536" }, { "@id": "#data/metaboliteassignmentfile-5132905248" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133493632" } }, { "@id": "#process/5133494352", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133854656" } ], "name": "", "nextProcess": { "@id": "#process/5133494448" }, "outputs": [ { "@id": "#material/extract-5133494304" } ], "parameterValues": [ { "@id": "#parameter_value/5133493776", "category": { "@id": "#parameter/5133535552" }, "value": "1 uL filtered urine" }, { "@id": "#parameter_value/5133494112", "category": { "@id": "#parameter/5133494208" }, "value": "NA" } ], "performer": "" }, { "@id": "#process/5133494448", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133494304" } ], "name": "", "nextProcess": { "@id": "#process/5133495360" }, "outputs": [ { "@id": "#material/labeledextract-5133494400" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133494352" } }, { "@id": "#process/5133495360", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133494400" } ], "name": "chromatography_XOM7", "nextProcess": { "@id": "#process/5133464192" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133494592", "category": { "@id": "#parameter/5133494688" }, "value": "Agilent 1290" }, { "@id": "#parameter_value/5133494880", "category": { "@id": "#parameter/5133494976" }, "value": "Acquity UPLC CSH C18 column (Waters)" }, { "@id": "#parameter_value/5133495168", "category": { "@id": "#parameter/5133495264" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133494448" } }, { "@id": "#process/5133464192", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM7", "nextProcess": { "@id": "#process/5133464240" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "parameterValues": [ { "@id": "#parameter_value/5133495504", "category": { "@id": "#parameter/5133495600" }, "value": "switching positive and negative ion mode !! MAYBE SERPARATE INTO NEGATIVE AND POSITIVE ASSAY?" }, { "@id": "#parameter_value/5133495792", "category": { "@id": "#parameter/5133495888" }, "value": "5-3000?" }, { "@id": "#parameter_value/5133496080", "category": { "@id": "#parameter/5133496176" }, "value": "Agilent 6460" }, { "@id": "#parameter_value/5133463664", "category": { "@id": "#parameter/5133463760" }, "value": "ESI" }, { "@id": "#parameter_value/5133463952", "category": { "@id": "#parameter/5133464048" }, "value": "triple quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133495360" } }, { "@id": "#process/5133464240", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "name": "data_transformation_XOM7", "nextProcess": { "@id": "#process/5133464288" }, "outputs": [ { "@id": "#data/normalizationname-5132905584" }, { "@id": "#data/derivedspectraldatafile-5132904528" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133464192" } }, { "@id": "#process/5133464288", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132905584" } ], "name": "metabolite_identification_XOM7", "outputs": [ { "@id": "#data/datatransformationname-5132905536" }, { "@id": "#data/metaboliteassignmentfile-5132905248" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133464240" } }, { "@id": "#process/5133464960", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133856672" } ], "name": "", "nextProcess": { "@id": "#process/5133465056" }, "outputs": [ { "@id": "#material/extract-5133464912" } ], "parameterValues": [ { "@id": "#parameter_value/5133464384", "category": { "@id": "#parameter/5133493872" }, "value": "1 uL filtered urine" }, { "@id": "#parameter_value/5133464720", "category": { "@id": "#parameter/5133464816" }, "value": "NA" } ], "performer": "" }, { "@id": "#process/5133465056", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133464912" } ], "name": "", "nextProcess": { "@id": "#process/5133465968" }, "outputs": [ { "@id": "#material/labeledextract-5133465008" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133464960" } }, { "@id": "#process/5133465968", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133465008" } ], "name": "chromatography_XOM8", "nextProcess": { "@id": "#process/5133467312" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133465200", "category": { "@id": "#parameter/5133465296" }, "value": "Agilent 1290" }, { "@id": "#parameter_value/5133465488", "category": { "@id": "#parameter/5133465584" }, "value": "Acquity UPLC CSH C18 column (Waters)" }, { "@id": "#parameter_value/5133465776", "category": { "@id": "#parameter/5133465872" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133465056" } }, { "@id": "#process/5133467312", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM8", "nextProcess": { "@id": "#process/5133467360" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "parameterValues": [ { "@id": "#parameter_value/5133466112", "category": { "@id": "#parameter/5133466208" }, "value": "switching positive and negative ion mode !! MAYBE SERPARATE INTO NEGATIVE AND POSITIVE ASSAY?" }, { "@id": "#parameter_value/5133466400", "category": { "@id": "#parameter/5133466496" }, "value": "5-3000?" }, { "@id": "#parameter_value/5133466688", "category": { "@id": "#parameter/5133466784" }, "value": "Agilent 6460" }, { "@id": "#parameter_value/5132839664", "category": { "@id": "#parameter/5132905344" }, "value": "ESI" }, { "@id": "#parameter_value/5133467072", "category": { "@id": "#parameter/5133467168" }, "value": "triple quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133465968" } }, { "@id": "#process/5133467360", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "name": "data_transformation_XOM8", "nextProcess": { "@id": "#process/5133467408" }, "outputs": [ { "@id": "#data/normalizationname-5132905584" }, { "@id": "#data/derivedspectraldatafile-5132904528" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133467312" } }, { "@id": "#process/5133467408", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132905584" } ], "name": "metabolite_identification_XOM8", "outputs": [ { "@id": "#data/datatransformationname-5132905536" }, { "@id": "#data/metaboliteassignmentfile-5132905248" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133467360" } }, { "@id": "#process/5133652464", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133772928" } ], "name": "", "nextProcess": { "@id": "#process/5133652560" }, "outputs": [ { "@id": "#material/extract-5133652416" } ], "parameterValues": [ { "@id": "#parameter_value/5133652032", "category": { "@id": "#parameter/5133467504" }, "value": "1 uL filtered urine" }, { "@id": "#parameter_value/5133652224", "category": { "@id": "#parameter/5133652320" }, "value": "NA" } ], "performer": "" }, { "@id": "#process/5133652560", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133652416" } ], "name": "", "nextProcess": { "@id": "#process/5133653472" }, "outputs": [ { "@id": "#material/labeledextract-5133652512" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133652464" } }, { "@id": "#process/5133653472", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133652512" } ], "name": "chromatography_XOM9", "nextProcess": { "@id": "#process/5133655008" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133652704", "category": { "@id": "#parameter/5133652800" }, "value": "Agilent 1290" }, { "@id": "#parameter_value/5133652992", "category": { "@id": "#parameter/5133653088" }, "value": "Acquity UPLC CSH C18 column (Waters)" }, { "@id": "#parameter_value/5133653280", "category": { "@id": "#parameter/5133653376" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133652560" } }, { "@id": "#process/5133655008", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM9", "nextProcess": { "@id": "#process/5133655056" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "parameterValues": [ { "@id": "#parameter_value/5133653616", "category": { "@id": "#parameter/5133653712" }, "value": "switching positive and negative ion mode !! MAYBE SERPARATE INTO NEGATIVE AND POSITIVE ASSAY?" }, { "@id": "#parameter_value/5133653904", "category": { "@id": "#parameter/5133654000" }, "value": "5-3000?" }, { "@id": "#parameter_value/5133654192", "category": { "@id": "#parameter/5133654288" }, "value": "Agilent 6460" }, { "@id": "#parameter_value/5133654480", "category": { "@id": "#parameter/5133654576" }, "value": "ESI" }, { "@id": "#parameter_value/5133654768", "category": { "@id": "#parameter/5133654864" }, "value": "triple quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133653472" } }, { "@id": "#process/5133655056", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "name": "data_transformation_XOM9", "nextProcess": { "@id": "#process/5133655104" }, "outputs": [ { "@id": "#data/normalizationname-5132905584" }, { "@id": "#data/derivedspectraldatafile-5132904528" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133655008" } }, { "@id": "#process/5133655104", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132905584" } ], "name": "metabolite_identification_XOM9", "outputs": [ { "@id": "#data/datatransformationname-5132905536" }, { "@id": "#data/metaboliteassignmentfile-5132905248" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133655056" } }, { "@id": "#process/5133655776", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132735344" }, "inputs": [ { "@id": "#sample/5133897888" } ], "name": "", "nextProcess": { "@id": "#process/5133655872" }, "outputs": [ { "@id": "#material/extract-5133655728" } ], "parameterValues": [ { "@id": "#parameter_value/5133655200", "category": { "@id": "#parameter/5133467600" }, "value": "1 uL filtered urine" }, { "@id": "#parameter_value/5133655536", "category": { "@id": "#parameter/5133655632" }, "value": "NA" } ], "performer": "" }, { "@id": "#process/5133655872", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600320" }, "inputs": [ { "@id": "#material/extract-5133655728" } ], "name": "", "nextProcess": { "@id": "#process/5133665040" }, "outputs": [ { "@id": "#material/labeledextract-5133655824" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133655776" } }, { "@id": "#process/5133665040", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134602096" }, "inputs": [ { "@id": "#material/labeledextract-5133655824" } ], "name": "chromatography_XOM10", "nextProcess": { "@id": "#process/5133666576" }, "outputs": [], "parameterValues": [ { "@id": "#parameter_value/5133664320", "category": { "@id": "#parameter/5133656016" }, "value": "Agilent 1290" }, { "@id": "#parameter_value/5133664560", "category": { "@id": "#parameter/5133664656" }, "value": "Acquity UPLC CSH C18 column (Waters)" }, { "@id": "#parameter_value/5133664848", "category": { "@id": "#parameter/5133664944" }, "value": "reverse phase" } ], "performer": "", "previousProcess": { "@id": "#process/5133655872" } }, { "@id": "#process/5133666576", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5132862656" }, "inputs": [], "name": "mass_spectrometry_XOM10", "nextProcess": { "@id": "#process/5133666624" }, "outputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "parameterValues": [ { "@id": "#parameter_value/5133665184", "category": { "@id": "#parameter/5133665280" }, "value": "switching positive and negative ion mode !! MAYBE SERPARATE INTO NEGATIVE AND POSITIVE ASSAY?" }, { "@id": "#parameter_value/5133665472", "category": { "@id": "#parameter/5133665568" }, "value": "5-3000?" }, { "@id": "#parameter_value/5133665760", "category": { "@id": "#parameter/5133665856" }, "value": "Agilent 6460" }, { "@id": "#parameter_value/5133666048", "category": { "@id": "#parameter/5133666144" }, "value": "ESI" }, { "@id": "#parameter_value/5133666336", "category": { "@id": "#parameter/5133666432" }, "value": "triple quadrupole" } ], "performer": "", "previousProcess": { "@id": "#process/5133665040" } }, { "@id": "#process/5133666624", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600944" }, "inputs": [ { "@id": "#data/rawspectraldatafile-5132906256" } ], "name": "data_transformation_XOM10", "nextProcess": { "@id": "#process/5133666672" }, "outputs": [ { "@id": "#data/normalizationname-5132905584" }, { "@id": "#data/derivedspectraldatafile-5132904528" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133666576" } }, { "@id": "#process/5133666672", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134600896" }, "inputs": [ { "@id": "#data/normalizationname-5132905584" } ], "name": "metabolite_identification_XOM10", "outputs": [ { "@id": "#data/datatransformationname-5132905536" }, { "@id": "#data/metaboliteassignmentfile-5132905248" } ], "parameterValues": [], "performer": "", "previousProcess": { "@id": "#process/5133666624" } } ], "technologyPlatform": "", "technologyType": { "@id": "#annotation_value/bf985a96-57a3-4429-ac2d-b6231d352518", "annotationValue": "high-performance liquid chromatography-mass spectrometry", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0000796", "termSource": "CHMO" }, "unitCategories": [] } ], "characteristicCategories": [], "comments": [], "description": "", "factors": [], "filename": "s_study.txt", "identifier": "tbd", "materials": { "otherMaterials": [], "samples": [ { "@id": "#sample/5131652112", "characteristics": [ { "category": { "@id": "#annotation_value/8f7c82c8-04cb-4359-8172-cf4688f8fb1a" }, "comments": [], "value": { "@id": "#annotation_value/e5c6328d-3078-4843-bb60-e972841d973a", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/5b7b28a8-08b4-411f-8584-07aac82b0aed" }, "comments": [], "value": { "@id": "#annotation_value/7de471eb-3b77-4cd8-b626-74d45da76acc", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP1" }, { "@id": "#sample/5133932000", "characteristics": [ { "category": { "@id": "#annotation_value/d47a283a-f7f5-48ae-b7c4-cfd5aae4e7e2" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP1" }, { "@id": "#sample/5134467904", "characteristics": [ { "category": { "@id": "#annotation_value/156494f1-b054-467f-a359-625b49449d05" }, "comments": [], "value": { "@id": "#annotation_value/325a9ca3-6d43-4641-93e4-7c649dcb5667", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/bb6730d4-572e-4361-bd38-9ec7477e4fb6" }, "comments": [], "value": { "@id": "#annotation_value/a6845f85-ae09-4ed0-a9ed-073b0d38f042", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP2" }, { "@id": "#sample/5134467568", "characteristics": [ { "category": { "@id": "#annotation_value/b1e18af9-a3a6-4811-863d-47d73d583f0d" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP2" }, { "@id": "#sample/5133765264", "characteristics": [ { "category": { "@id": "#annotation_value/fb654798-a544-45bd-818d-48e1fd1a3c21" }, "comments": [], "value": { "@id": "#annotation_value/d96c0430-8e4e-4515-af6e-50b8902a6c49", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/a3b84bb8-198d-48ba-9eb9-fb3710db8583" }, "comments": [], "value": { "@id": "#annotation_value/b22f6902-59a7-4293-bd8e-1923fad1b63b", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP3" }, { "@id": "#sample/5133764544", "characteristics": [ { "category": { "@id": "#annotation_value/9eec3dfd-294e-4af2-8732-bce2d318c970" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP3" }, { "@id": "#sample/5133763248", "characteristics": [ { "category": { "@id": "#annotation_value/b6b4e23c-abf8-47b4-bf0f-a2d2bc2f6e56" }, "comments": [], "value": { "@id": "#annotation_value/e63da56c-18b1-4513-a4fd-6965d87022da", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/8d4ff784-e1d6-4115-beb4-c6f5565aa7e0" }, "comments": [], "value": { "@id": "#annotation_value/80ffc6f3-cbde-4294-84ba-88756df8847e", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP4" }, { "@id": "#sample/5133746080", "characteristics": [ { "category": { "@id": "#annotation_value/0557443d-8c59-4497-867f-d28b85c8be43" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP4" }, { "@id": "#sample/5133887232", "characteristics": [ { "category": { "@id": "#annotation_value/53978777-0c1e-4713-9359-6737d6962225" }, "comments": [], "value": { "@id": "#annotation_value/3a7b6a8a-b146-433d-bc94-c0088180d196", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/2ae50526-cd78-4738-bed7-980f9961e99d" }, "comments": [], "value": { "@id": "#annotation_value/475b8488-8a20-4b84-bb27-8083e076b141", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP5" }, { "@id": "#sample/5133887952", "characteristics": [ { "category": { "@id": "#annotation_value/9763ae08-29c0-434a-b9cc-31d663983f8f" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP5" }, { "@id": "#sample/5133888912", "characteristics": [ { "category": { "@id": "#annotation_value/a1846f10-6d55-46ee-bd28-9bb1b84aec63" }, "comments": [], "value": { "@id": "#annotation_value/6116a9f7-fa78-43b0-9ae5-641ed1c98c50", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/da74013e-ddd2-477c-9298-607f95fb357e" }, "comments": [], "value": { "@id": "#annotation_value/44ab3240-997c-42bf-aca2-109ab1a6dfc4", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP6" }, { "@id": "#sample/5133852832", "characteristics": [ { "category": { "@id": "#annotation_value/d42ebbc9-6e6a-4176-a3c5-8780546f6b15" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP6" }, { "@id": "#sample/5133854656", "characteristics": [ { "category": { "@id": "#annotation_value/ea7ca2a9-7996-4056-afd7-bf28ca344dc7" }, "comments": [], "value": { "@id": "#annotation_value/dfe224d1-4f10-414c-aa27-f8dac4fd1c82", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/a17622f3-634e-4e92-ad76-33ea37ad682b" }, "comments": [], "value": { "@id": "#annotation_value/5492ae09-2201-40b0-af7e-358018c918a9", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP7" }, { "@id": "#sample/5133855376", "characteristics": [ { "category": { "@id": "#annotation_value/d88b3d6c-3fd1-473d-8ab4-f8ad8b3d98de" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP7" }, { "@id": "#sample/5133856672", "characteristics": [ { "category": { "@id": "#annotation_value/4e2e76d8-ca72-4903-b633-5a06a534c7d3" }, "comments": [], "value": { "@id": "#annotation_value/e215204c-fab3-4f08-a495-a06884709b83", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/74d41d03-4e7e-4ec6-8f21-b2163e1e1c6f" }, "comments": [], "value": { "@id": "#annotation_value/a215d192-8c7a-425c-b61e-096d74bf4d71", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP8" }, { "@id": "#sample/5133771440", "characteristics": [ { "category": { "@id": "#annotation_value/44baa9a9-028d-4650-93b6-6e24b82c79ac" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP8" }, { "@id": "#sample/5133772928", "characteristics": [ { "category": { "@id": "#annotation_value/a070a6a8-af41-4fa8-a5f4-cb72033357fe" }, "comments": [], "value": { "@id": "#annotation_value/dbf7f334-1eb1-4992-9f96-876c7738f012", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/8c72c9a1-2753-479c-9302-84f23ba76513" }, "comments": [], "value": { "@id": "#annotation_value/b2fd35ae-c52e-446f-8c0d-98561f948803", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP9" }, { "@id": "#sample/5133773648", "characteristics": [ { "category": { "@id": "#annotation_value/67ae10a5-0a1b-4e41-97ef-fee3f3ade35a" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP9" }, { "@id": "#sample/5133897888", "characteristics": [ { "category": { "@id": "#annotation_value/c49cd52f-2ddb-479e-900b-b5435218f843" }, "comments": [], "value": { "@id": "#annotation_value/f10760a6-ec9c-4cb1-afdd-98525cf2ed72", "annotationValue": "urine", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001088", "termSource": "UBERON" } }, { "category": { "@id": "#annotation_value/a6c760fd-d319-4963-a18d-4f57b535a591" }, "comments": [], "value": { "@id": "#annotation_value/e01a2bfa-8adc-4cbe-a9e5-7f832991d1f2", "annotationValue": "experimental sample", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/CHMO_0002746", "termSource": "CHMO" } } ], "comments": [], "factorValues": [], "name": "urine_XOP10" }, { "@id": "#sample/5133898608", "characteristics": [ { "category": { "@id": "#annotation_value/019abf22-bf29-4870-93c0-8fb42d6206b7" }, "comments": [], "value": "" } ], "comments": [], "factorValues": [], "name": "buccal_mucosa_XOP10" } ], "sources": [ { "@id": "#source/5134146096", "characteristics": [ { "category": { "@id": "#annotation_value/fa2b7731-10c1-4211-9faa-70ae72c82bdc" }, "comments": [], "value": { "@id": "#annotation_value/f238490a-397b-4458-a543-59e2394c038f", "annotationValue": "Homo sapiens", "comments": [], "termAccession": "http://purl.bioontology.org/ontology/NCBITAXON/9606", "termSource": "NCBITAXON" } }, { "category": { "@id": "#annotation_value/396730d7-93ab-460f-9ee2-785fecf857c2" }, "comments": [], "value": "XOF1" }, { "category": { "@id": "#annotation_value/e55b10f8-f6ef-431a-a533-713f44a5c733" }, "comments": [], "unit": { "@id": "#annotation_value/c741345a-59a9-419c-88c2-e94deeaa5861" }, "value": "" } ], "comments": [], "name": "XOP1" }, { "@id": "#source/5132147296", "characteristics": [ { "category": { "@id": "#annotation_value/1dddf7d1-44d2-45f4-88bb-d4a7da50e05c" }, "comments": [], "value": { "@id": "#annotation_value/1b531d75-8f49-4033-bbbe-9b39666191e5", "annotationValue": "Homo sapiens", "comments": [], "termAccession": "http://purl.bioontology.org/ontology/NCBITAXON/9606", "termSource": "NCBITAXON" } }, { "category": { "@id": "#annotation_value/e1db2ac3-c529-4417-8ceb-6cf0c97cacb9" }, "comments": [], "value": "XOF2" }, { "category": { "@id": "#annotation_value/dd04b904-cf99-41a2-9f17-629d12a3e65c" }, "comments": [], "unit": { "@id": "#annotation_value/7f4a1cb9-b7cd-4d8b-aaa5-2da6d92849c0" }, "value": "" } ], "comments": [], "name": "XOP2" }, { "@id": "#source/5133931856", "characteristics": [ { "category": { "@id": "#annotation_value/2a1ba90f-8b4e-4dab-915b-84f2224a265c" }, "comments": [], "value": { "@id": "#annotation_value/d9933ea7-d9af-4225-ae56-07254e836492", "annotationValue": "Homo sapiens", "comments": [], "termAccession": "http://purl.bioontology.org/ontology/NCBITAXON/9606", "termSource": "NCBITAXON" } }, { "category": { "@id": "#annotation_value/ac41dce8-d26b-453b-987d-f654bf711b31" }, "comments": [], "value": "XOF3" }, { "category": { "@id": "#annotation_value/d7fd887f-9949-4ac9-815c-8f9b3850a338" }, "comments": [], "unit": { "@id": "#annotation_value/e644a53b-4d30-439d-8220-a4a8515e3cb6" }, "value": "" } ], "comments": [], "name": "XOP3" }, { "@id": "#source/5134468624", "characteristics": [ { "category": { "@id": "#annotation_value/fc9b9b53-bc07-4ced-926d-c49f055eaf79" }, "comments": [], "value": { "@id": "#annotation_value/cf91e67b-089e-4ce7-97c9-9ee58f876819", "annotationValue": "Homo sapiens", "comments": [], "termAccession": "http://purl.bioontology.org/ontology/NCBITAXON/9606", "termSource": "NCBITAXON" } }, { "category": { "@id": "#annotation_value/e0928cc1-cba2-4048-abec-1560a5c0aa7e" }, "comments": [], "value": "XOF4" }, { "category": { "@id": "#annotation_value/cfcb7e98-2231-4d64-ad06-ab6f7b0dbcb5" }, "comments": [], "unit": { "@id": "#annotation_value/932dfe67-2c43-4bc6-bf06-49f128805389" }, "value": "" } ], "comments": [], "name": "XOP4" }, { "@id": "#source/5133764160", "characteristics": [ { "category": { "@id": "#annotation_value/5a47f08a-704a-4873-b31b-d6cc33fc6c3a" }, "comments": [], "value": { "@id": "#annotation_value/ce2ac508-db5c-4524-8901-3d09a0620fb0", "annotationValue": "Homo sapiens", "comments": [], "termAccession": "http://purl.bioontology.org/ontology/NCBITAXON/9606", "termSource": "NCBITAXON" } }, { "category": { "@id": "#annotation_value/4bcd3ce5-9099-41b2-9b2b-ee45cd38da52" }, "comments": [], "value": "XOF5" }, { "category": { "@id": "#annotation_value/093aea75-6b6d-4ef0-b8aa-bdbc2e690f5e" }, "comments": [], "unit": { "@id": "#annotation_value/a0e4af0f-8d2b-4652-bf68-0f6e5da5e02d" }, "value": "" } ], "comments": [], "name": "XOP5" }, { "@id": "#source/5133745696", "characteristics": [ { "category": { "@id": "#annotation_value/828f8022-e876-4a29-9c55-1eb35870bf37" }, "comments": [], "value": { "@id": "#annotation_value/36a5dee2-2969-4fa4-b47d-78bde3f04d2c", "annotationValue": "Homo sapiens", "comments": [], "termAccession": "http://purl.bioontology.org/ontology/NCBITAXON/9606", "termSource": "NCBITAXON" } }, { "category": { "@id": "#annotation_value/d2f9fa4a-0685-4e8d-aeba-1e88fadaeae4" }, "comments": [], "value": "XOF6" }, { "category": { "@id": "#annotation_value/2fabe73a-e2dc-4e1a-b904-df219a441e4a" }, "comments": [], "unit": { "@id": "#annotation_value/8e552276-5460-4776-a442-dd1b3d4b68e9" }, "value": "" } ], "comments": [], "name": "XOP6" }, { "@id": "#source/5134601472", "characteristics": [ { "category": { "@id": "#annotation_value/694b806d-787c-4830-81e7-dee3aa59995a" }, "comments": [], "value": { "@id": "#annotation_value/691551c0-a52f-4a24-bac6-03a8e1eb241b", "annotationValue": "Homo sapiens", "comments": [], "termAccession": "http://purl.bioontology.org/ontology/NCBITAXON/9606", "termSource": "NCBITAXON" } }, { "category": { "@id": "#annotation_value/1e5a6d54-7b85-43cc-80dd-ad2432be8100" }, "comments": [], "value": "XOF7" }, { "category": { "@id": "#annotation_value/898268eb-82e0-4084-be09-68fceb083b30" }, "comments": [], "unit": { "@id": "#annotation_value/e4956e2c-f23d-4113-a808-def863d53bcb" }, "value": "" } ], "comments": [], "name": "XOP7" }, { "@id": "#source/5133853216", "characteristics": [ { "category": { "@id": "#annotation_value/b92fb3a3-b63d-40f0-b234-ab9f235121ac" }, "comments": [], "value": { "@id": "#annotation_value/a48e90b7-d6cb-4813-8002-3fe7a7bdea30", "annotationValue": "Homo sapiens", "comments": [], "termAccession": "http://purl.bioontology.org/ontology/NCBITAXON/9606", "termSource": "NCBITAXON" } }, { "category": { "@id": "#annotation_value/42ca7e8c-950b-4ffc-b6b4-8969ae077871" }, "comments": [], "value": "XOF8" }, { "category": { "@id": "#annotation_value/1125aa26-76a3-4bef-9959-9f48660085c8" }, "comments": [], "unit": { "@id": "#annotation_value/e8292f1f-f577-43b7-8558-c4900ded5fa3" }, "value": "" } ], "comments": [], "name": "XOP8" }, { "@id": "#source/5133855760", "characteristics": [ { "category": { "@id": "#annotation_value/f4a08ab6-6447-407e-80f9-625f618d5223" }, "comments": [], "value": { "@id": "#annotation_value/e48bbb22-5cfe-48a2-8f8f-21e4c5796437", "annotationValue": "Homo sapiens", "comments": [], "termAccession": "http://purl.bioontology.org/ontology/NCBITAXON/9606", "termSource": "NCBITAXON" } }, { "category": { "@id": "#annotation_value/a973dd59-5019-4036-8859-c23bf5b80d02" }, "comments": [], "value": "XOF9" }, { "category": { "@id": "#annotation_value/1a5ea91b-b8cf-4fe6-8e79-15a8ced69f1e" }, "comments": [], "unit": { "@id": "#annotation_value/aa4cec97-1394-4cf3-b2b4-fb7b684af643" }, "value": "" } ], "comments": [], "name": "XOP9" }, { "@id": "#source/5133771824", "characteristics": [ { "category": { "@id": "#annotation_value/6112661d-bd71-4650-bb45-20a39c10ee4b" }, "comments": [], "value": { "@id": "#annotation_value/cf608aec-f813-49f8-915d-faa923ce9a53", "annotationValue": "Homo sapiens", "comments": [], "termAccession": "http://purl.bioontology.org/ontology/NCBITAXON/9606", "termSource": "NCBITAXON" } }, { "category": { "@id": "#annotation_value/b7d5542d-ed5c-4e1c-b5ca-60b555f442ef" }, "comments": [], "value": "XOF10" }, { "category": { "@id": "#annotation_value/a50213e0-5ba9-4352-a3cf-8fb3d0737133" }, "comments": [], "unit": { "@id": "#annotation_value/b90d8815-3e0b-4c4f-bead-78f0be3df34b" }, "value": "" } ], "comments": [], "name": "XOP10" } ] }, "people": [], "processSequence": [ { "@id": "#process/5133931472", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5134146096" } ], "name": "urine_specimen_collection_process_XOP1", "outputs": [ { "@id": "#sample/5131652112" } ], "parameterValues": [ { "@id": "#parameter_value/5133934064", "category": { "@id": "#parameter/5134610288" }, "value": "urine" } ], "performer": "" }, { "@id": "#process/5133931760", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5134146096" } ], "name": "buccal_specimen_collection_process_XOP1", "outputs": [ { "@id": "#sample/5133932000" } ], "parameterValues": [ { "@id": "#parameter_value/5133931664", "category": { "@id": "#parameter/5134610288" }, "value": "buccal mucosa" } ], "performer": "" }, { "@id": "#process/5134468240", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5132147296" } ], "name": "urine_specimen_collection_process_XOP2", "outputs": [ { "@id": "#sample/5134467904" } ], "parameterValues": [ { "@id": "#parameter_value/5134467952", "category": { "@id": "#parameter/5134610288" }, "value": "urine" } ], "performer": "" }, { "@id": "#process/5134468912", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5132147296" } ], "name": "buccal_specimen_collection_process_XOP2", "outputs": [ { "@id": "#sample/5134467568" } ], "parameterValues": [ { "@id": "#parameter_value/5134469440", "category": { "@id": "#parameter/5134610288" }, "value": "buccal mucosa" } ], "performer": "" }, { "@id": "#process/5133764688", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5133931856" } ], "name": "urine_specimen_collection_process_XOP3", "outputs": [ { "@id": "#sample/5133765264" } ], "parameterValues": [ { "@id": "#parameter_value/5133764592", "category": { "@id": "#parameter/5134610288" }, "value": "urine" } ], "performer": "" }, { "@id": "#process/5133764208", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5133931856" } ], "name": "buccal_specimen_collection_process_XOP3", "outputs": [ { "@id": "#sample/5133764544" } ], "parameterValues": [ { "@id": "#parameter_value/5133764400", "category": { "@id": "#parameter/5134610288" }, "value": "buccal mucosa" } ], "performer": "" }, { "@id": "#process/5133746128", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5134468624" } ], "name": "urine_specimen_collection_process_XOP4", "outputs": [ { "@id": "#sample/5133763248" } ], "parameterValues": [ { "@id": "#parameter_value/5133762624", "category": { "@id": "#parameter/5134610288" }, "value": "urine" } ], "performer": "" }, { "@id": "#process/5133745744", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5134468624" } ], "name": "buccal_specimen_collection_process_XOP4", "outputs": [ { "@id": "#sample/5133746080" } ], "parameterValues": [ { "@id": "#parameter_value/5133745936", "category": { "@id": "#parameter/5134610288" }, "value": "buccal mucosa" } ], "performer": "" }, { "@id": "#process/5133887808", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5133764160" } ], "name": "urine_specimen_collection_process_XOP5", "outputs": [ { "@id": "#sample/5133887232" } ], "parameterValues": [ { "@id": "#parameter_value/5133887904", "category": { "@id": "#parameter/5134610288" }, "value": "urine" } ], "performer": "" }, { "@id": "#process/5134601280", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5133764160" } ], "name": "buccal_specimen_collection_process_XOP5", "outputs": [ { "@id": "#sample/5133887952" } ], "parameterValues": [ { "@id": "#parameter_value/5134600224", "category": { "@id": "#parameter/5134610288" }, "value": "buccal mucosa" } ], "performer": "" }, { "@id": "#process/5133852736", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5133745696" } ], "name": "urine_specimen_collection_process_XOP6", "outputs": [ { "@id": "#sample/5133888912" } ], "parameterValues": [ { "@id": "#parameter_value/5133889488", "category": { "@id": "#parameter/5134610288" }, "value": "urine" } ], "performer": "" }, { "@id": "#process/5133853168", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5133745696" } ], "name": "buccal_specimen_collection_process_XOP6", "outputs": [ { "@id": "#sample/5133852832" } ], "parameterValues": [ { "@id": "#parameter_value/5133852976", "category": { "@id": "#parameter/5134610288" }, "value": "buccal mucosa" } ], "performer": "" }, { "@id": "#process/5133855232", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5134601472" } ], "name": "urine_specimen_collection_process_XOP7", "outputs": [ { "@id": "#sample/5133854656" } ], "parameterValues": [ { "@id": "#parameter_value/5133855328", "category": { "@id": "#parameter/5134610288" }, "value": "urine" } ], "performer": "" }, { "@id": "#process/5133855712", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5134601472" } ], "name": "buccal_specimen_collection_process_XOP7", "outputs": [ { "@id": "#sample/5133855376" } ], "parameterValues": [ { "@id": "#parameter_value/5133855520", "category": { "@id": "#parameter/5134610288" }, "value": "buccal mucosa" } ], "performer": "" }, { "@id": "#process/5133771296", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5133853216" } ], "name": "urine_specimen_collection_process_XOP8", "outputs": [ { "@id": "#sample/5133856672" } ], "parameterValues": [ { "@id": "#parameter_value/5133771392", "category": { "@id": "#parameter/5134610288" }, "value": "urine" } ], "performer": "" }, { "@id": "#process/5133771776", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5133853216" } ], "name": "buccal_specimen_collection_process_XOP8", "outputs": [ { "@id": "#sample/5133771440" } ], "parameterValues": [ { "@id": "#parameter_value/5133771584", "category": { "@id": "#parameter/5134610288" }, "value": "buccal mucosa" } ], "performer": "" }, { "@id": "#process/5133773504", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5133855760" } ], "name": "urine_specimen_collection_process_XOP9", "outputs": [ { "@id": "#sample/5133772928" } ], "parameterValues": [ { "@id": "#parameter_value/5133773600", "category": { "@id": "#parameter/5134610288" }, "value": "urine" } ], "performer": "" }, { "@id": "#process/5133773984", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5133855760" } ], "name": "buccal_specimen_collection_process_XOP9", "outputs": [ { "@id": "#sample/5133773648" } ], "parameterValues": [ { "@id": "#parameter_value/5133773792", "category": { "@id": "#parameter/5134610288" }, "value": "buccal mucosa" } ], "performer": "" }, { "@id": "#process/5133898464", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5133771824" } ], "name": "urine_specimen_collection_process_XOP10", "outputs": [ { "@id": "#sample/5133897888" } ], "parameterValues": [ { "@id": "#parameter_value/5133898560", "category": { "@id": "#parameter/5134610288" }, "value": "urine" } ], "performer": "" }, { "@id": "#process/5133898944", "comments": [], "date": "", "executesProtocol": { "@id": "#protocol/5134609472" }, "inputs": [ { "@id": "#source/5133771824" } ], "name": "buccal_specimen_collection_process_XOP10", "outputs": [ { "@id": "#sample/5133898608" } ], "parameterValues": [ { "@id": "#parameter_value/5133898752", "category": { "@id": "#parameter/5134610288" }, "value": "buccal mucosa" } ], "performer": "" } ], "protocols": [ { "@id": "#protocol/5134609472", "comments": [], "components": [], "description": "", "name": "sample collection", "parameters": [ { "@id": "#parameter/5134610288", "parameterName": { "@id": "#annotation_value/832158af-e137-40f2-ae22-8b0397d8d8d5", "annotationValue": "anatomical entity", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/UBERON_0001062", "termSource": "UBERON" } } ], "protocolType": { "@id": "#annotation_value/fe0cac02-b3bf-4156-9a82-f9a7bdfff388", "annotationValue": "sample collection", "comments": [], "termAccession": "", "termSource": "" }, "uri": "", "version": "" }, { "@id": "#protocol/5132615984", "comments": [], "components": [], "description": "", "name": "DNA extraction", "parameters": [], "protocolType": { "@id": "#annotation_value/b49a1520-9758-42bb-b21d-27caf5b74315", "annotationValue": "DNA extraction", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/OBI_0000257", "termSource": "OBI" }, "uri": "", "version": "" }, { "@id": "#protocol/5134607888", "comments": [], "components": [], "description": "", "name": "genotype profiling", "parameters": [], "protocolType": { "@id": "#annotation_value/ef71f738-7112-4504-983f-6ec00437572d", "annotationValue": "genotyping", "comments": [], "termAccession": "http://www.ebi.ac.uk/efo/EFO_0000750", "termSource": "EFO" }, "uri": "", "version": "" }, { "@id": "#protocol/5132734720", "comments": [], "components": [], "description": "", "name": "DNA extraction", "parameters": [], "protocolType": { "@id": "#annotation_value/77363928-e00e-4861-bc81-c22a1518bfdc", "annotationValue": "DNA extraction", "comments": [], "termAccession": "http://purl.obolibrary.org/obo/OBI_0000257", "termSource": "OBI" }, "uri": "", "version": "" }, { "@id": "#protocol/5134647888", "comments": [], "components": [], "description": "", "name": "methylation profiling", "parameters": [], "protocolType": { "@id": "#annotation_value/0d5f6108-7e71-49d1-8ec8-280d359bbf84", "annotationValue": "methylation profiling", "comments": [], "termAccession": "http://www.ebi.ac.uk/efo/EFO_0000751", "termSource": "EFO" }, "uri": "", "version": "" }, { "@id": "#protocol/5130481920", "comments": [], "components": [], "description": "Sinke, Lucy, van Iterson, Maarten, Cats, Davy, Slieker, Roderick, & Heijmans, Bas. (2019, July 11). DNAmArray: Streamlined workflow for the quality control, normalization, and analysis of Illumina methylation array data (Version 2.1). Zenodo. http://doi.org/10.5281/zenodo.3355292", "name": "methylation data processing protocol", "parameters": [], "protocolType": { "@id": "#annotation_value/4b3671b2-d712-4629-b7fc-c26b3ba24182", "annotationValue": "Protocol", "comments": [], "termAccession": "http://edamontology.org/data_2531", "termSource": "EDAM" }, "uri": "http://doi.org/10.5281/zenodo.3355292", "version": "" }, { "@id": "#protocol/5132735488", "comments": [], "components": [], "description": "", "name": "urine sampling", "parameters": [], "protocolType": { "@id": "#annotation_value/caa25712-f8ae-4832-99de-9c5f1e6c5d1d", "annotationValue": "urine speciment collection", "comments": [], "termAccession": "http://snomed.info/id/57617002", "termSource": "" }, "uri": "", "version": "" } ], "publicReleaseDate": "", "publications": [], "studyDesignDescriptors": [], "submissionDate": "", "title": "X-omics data analysis, integration and stewardship demonstrator dataset: NTR ACTION omics data", "unitCategories": [] } ], "submissionDate": "", "title": "X-omics data analysis, integration and stewardship demonstrator dataset: NTR ACTION omics data" }