Onassis uses Conceptmapper, an Apache UIMA (Unstructured Information Management Architecture) dictionary lookup tool to retrieve dictionary terms in a given text. https://uima.apache.org/downloads/sandbox/ConceptMapperAnnotatorUserGuide/ConceptMapperAnnotatorUserGuide.html
In particular, the ccp-nlp Conceptmapper wrapper, specific for the biomedical domain, implements a pipeline through which it is possible to retrieve concepts from OBO ontologies in any given text with different adjustable options (Verspoor et al. 2009).
Onassis features can be easily accessed through a main class named , having as slots , , and . In the following sections we first show details on the usage of the classes and methods that constitute the building blocks of typical metadata integration workflows and than we show how using the Onassis class their usage is further simplified.
Onassis can handle any type of text as input, but is particularly well suited for the analysis of the metadata from Gene Expression Omnibus (GEO). This represents a fundamental first step in the integrative analysis of the data from those repositories (Galeota and Pelizzola 2016). Indeed it provides the possibility to associate concepts from any OBO ontology to GEO, but also SRA metadata retrieved using GEOmetadb. In addition to the ontological concepts, the recognition of gene/protein symbols or epigenetic modifications can be highly relevant, especially for experiments directed to those specific factors or marks (such as ChIP-seq experiments).
The semantic similarity module uses different semantic similarity measures to determine the semantic similarity of concepts in a given ontology. This module has been developed on the basis of the Java slib http://www.semantic-measures-library.org/sml. To run Onassis Java (>= 1.8) is needed.
One of the most straightforward ways to retrieve GEO metadata is through GEOmetadb package. In order to use them through Onassis the user should download the corresponding SQLite database following the instructions provided in the packages vignette. While the SQLite source databases are required, Onassis allows to access to those data without any knowledge on SQL programming, thus providing functions to help the metadata retrieval without the need of explicitly making queries to the database.
First, it is necessary to obtain and get a connection to the SQLite database. connectToGEODB
returns a connection to the database given the path of the SQLite file. If the latter is missing, it is automatically downloaded into the current working directory. Because of the size of these files (0.5-4GB), the results of the queries illustrated below are available into Onassis for subsequent analysis illustrated in this document. Then, the getGEOmetadata
function can be used to retrieve the metadata of specific GEO samples, taking as minimal parameters the connection to the database and one of the experiment types available. Optionally it is possible to specify the organism and the platform.
## Running this function might take long time if the database has to be downloaded.
geo_con <- connectToGEODB(system.file(getwd(), 'GEOmetadb.sqlite'))
#Showing the experiment types available in GEO
experiments <- experiment_types(geo_con)
#Showing the organism types available in GEO
species <- organism_types(geo_con)
#Retrieving the metadata associated to experiment type "Methylation profiling by high througput sequencing"
meth_metadata <- getGEOMetadata(geo_con, experiment_type='Methylation profiling by high throughput sequencing', organism = 'Homo sapiens')
#Retrieving Human gene expression metadata, knowing the GEO platform identifier, e.g. the Affymetrix Human Genome U133 Plus 2.0 Array
expression <- getGEOMetadata(geo_con, experiment_type='Expression profiling by array', gpl='GPL570')
Some of the experiment types available are the following:
Table: (#tab:experimentTypesshow)x |
---|
Expression profiling by MPSS |
Expression profiling by RT-PCR |
Expression profiling by SAGE |
Expression profiling by SNP array |
Expression profiling by array |
Expression profiling by genome tiling array |
Expression profiling by high throughput sequencing |
Genome binding/occupancy profiling by SNP array |
Genome binding/occupancy profiling by array |
Genome binding/occupancy profiling by genome tiling array |
Some of the organisms available are the following:
Table: (#tab:speciesShow)x |
---|
Homo sapiens |
Drosophila melanogaster |
Mus musculus |
Zea mays |
Arabidopsis thaliana |
Caenorhabditis elegans |
Helicobacter pylori |
Escherichia coli |
Rattus norvegicus |
Saccharomyces cerevisiae |
To avoid installing GEOmetadb meth_metadata was previously saved and can be loaded from Onassis:
meth_metadata <- readRDS(system.file('extdata', 'vignette_data', 'GEOmethylation.rds', package='Onassis'))
Table: (#tab:printmeta)
FALSE | series_id | gsm | title | gpl | source_name_ch1 | organism_ch1 | characteristics_ch1 | description | experiment_title | experiment_summary |
---|---|---|---|---|---|---|---|---|---|---|
1251 | GSE42590 | GSM1045538 | 2316_DLPFC_Control | GPL10999 | Brain (dorsolateral prefrontal cortex) | Homo sapiens | tissue: Heterogeneous brain tissue | NA | Genome-wide DNA methylation profiling of human dorsolateral prefrontal cortex | Reduced representation bisulfite sequencing (RRBS) |
511 | GSE27432 | GSM678217 | hEB16d_H9_p65_RRBS | GPL9115 | embryoid body from hES H9 p65 | Homo sapiens | cell type: hEB16d_H9_p65 | reduced representation bisulfite sequencing | Genomic distribution and inter-sample variation of non-CG methylation across human cell types | DNA methylation plays an important role in develop |
2731 | GSE58889 | GSM1421876 | Normal_CD19_11 | GPL11154 | Normal CD19+ cells | Homo sapiens | cell type: Normal CD19+ cells; disease status: healthy | NA | Methylation disorder in CLL | We performed RRBS and WGBS on primary human chroni |
1984 | GSE50761 | GSM1228607 | Time Course Off-target Day 7 1 HBB133 | GPL15520 | K562 cells | Homo sapiens | cell line: K562 cells; target loci: Time Course Off-target Day 7 1 | 2013.03.16._MM364_analysis.csv | Targeted DNA demethylation using TALE-TET1 fusion proteins | Recent large-scale studies have defined genomewide |
851 | GSE36173 | GSM882245 | H1 human ES cells | GPL10999 | H1 human ES cells | Homo sapiens | cell line: H1 | 5-hmC whole genome bisulfite sequencing | Base Resolution Analysis of 5-Hydroxymethylcytosine in the Mammalian Genome | The study of 5-hydroxylmethylcytosines (5hmC), the |
1966 | GSE50761 | GSM1228589 | Time Course HB-6 Day 4 1 HBB115 | GPL15520 | K562 cells | Homo sapiens | cell line: K562 cells; target loci: Time Course HB-6 Day 4 1 | 2013.03.16._MM364_analysis.csv | Targeted DNA demethylation using TALE-TET1 fusion proteins | Recent large-scale studies have defined genomewide |
1827 | GSE50761 | GSM1228450 | Off target -650 to -850 3 RHOX117 | GPL15520 | 293 cells | Homo sapiens | cell line: 293 cells; target loci: Off target -650 to -850 3 | 2013-07-23-MM195-288-394_analysis.csv | Targeted DNA demethylation using TALE-TET1 fusion proteins | Recent large-scale studies have defined genomewide |
378 | GSE26592 | GSM655200 | Endometrial Recurrent 5 | GPL9052 | Human endometrial specimen | Homo sapiens | tissue: Human endometrial specimen; cell type: primary tissues; disease status: Recurrent; chromatin selection: MBD protein | MBDCap using MethylMiner Methylated DNA Enrichment Kit (Invitrogen, ME 10025); library strategy: Endometrial samples: MBDCao-seq. Breast cells: MBDCap-seq.; library selection: Endometrial samples: MBDCap. Breast cells: MBDCap-se | q. Neighboring genomic regions influence differential methylation patterns of CpG islands in endometrial and breast cance | rs We report the global methylation patterns by MBDCa |
1754 | GSE50761 | GSM1228377 | Initial Screen RH-3 -250-+1 2 RHOX44 | GPL15520 | HeLa cells | Homo sapiens | cell line: HeLa cells; target loci: Initial Screen RH-3 -250-+1 2 | 2013-07-12-MM564_analysis.csv | Targeted DNA demethylation using TALE-TET1 fusion proteins | Recent large-scale studies have defined genomewide |
2371 | GSE54961 | GSM1327281 | Healthy Control | GPL9052 | Healthy Control | Homo sapiens | etiology: Healthy Control; tissue: Peripheral venous blood; molecule subtype: serum cell-free DNA | Sample 1 | Epigenome analysis of serum cell-free circulating DNA in progression of HBV-related Hepatocellular carcinoma | Purpose: Aberrantly methylated DNA are hallmarks |
In this section we provide an example showing how it is possible to retrieve data from other databases such as SRA. In this case we only show hot to query the database and store the metadata in a data frame to be used in Onassis. The following code requires the file SRAdb.sqlite, containing SRA metadata.
we As for GEO, the getSRAMetadata
function allows the retrieval of metadata of high througput sequencing data stored in SRA through . To facilitate the retrieval of experiment types in SRA, the Onassis function library_strategies
can be used. Filters for the sample’s material (GENOMIC, TRANSCRIPTOMIC, METAGENOMIC…), the species and the center hosting the data are allowed.
For example, to obtain SRA metadata of ChIP-Seq human samples and Bisulfite sequencing samples the following code can be used.
# Connection to the SRAmetadb and potential download of the sqlite file
sqliteFileName <- './data/SRAdb.sqlite'
sra_con <- dbConnect(SQLite(), sqliteFileName)()
# Query for the ChIP-Seq experiments contained in GEO for human samples
library_strategy <- 'ChIP-Seq'
library_source='GENOMIC'
taxon_id=9606
center_name='GEO'
samples_query <- paste0("select sample_accession, description, sample_attribute, sample_url_link from sample where taxon_id='", taxon_id, "' and sample_accession IS NOT NULL", " and center_name='", center_name, "'", )
samples_df <- dbGetQuery(sra_con, samples_query)
samples <- unique(as.character(as.vector(samples_df[, 1])))
experiment_query <- paste0("select experiment_accession, center_name, title, sample_accession, sample_name, experiment_alias, library_strategy, library_layout, experiment_url_link, experiment_attribute from experiment where library_strategy='",
library_strategy, "'" , " and library_source ='", library_source,
"' " )
experiment_df <- dbGetQuery(sra_con, experiment_query)
experiment_df <- merge(experiment_df, samples_df, by = "sample_accession")
experiment_df$experiment_attribute <- sapply(experiment_df$experiment_attribute,
function(value) {
gsub("||", " ", value)
})
experiment_df$sample_attribute <- sapply(experiment_df$sample_attribute,
function(value) {
gsub("||", " ", value)
})
experiment_df$sample_name <- sapply(experiment_df$sample_name,
function(value) {
gsub("_", " ", value)
})
experiment_df$experiment_alias <- sapply(experiment_df$experiment_alias,
function(value) {
gsub("_", " ", value)
})
sra_chip_seq <- experiment_df
To avoid installing SRAmetadb sra_chip_seq was previously saved and can be loaded from Onassis:
sra_chip_seq <- readRDS(system.file('extdata', 'vignette_data', 'GEO_human_chip.rds', package='Onassis'))
Table: (#tab:printchromatinIP)
FALSE | sample_accession | experiment_accession | center_name | title | library_strategy | library_layout | experiment_url_link | experiment_attribute | description | sample_attribute | sample_url_link |
---|---|---|---|---|---|---|---|---|---|---|---|
5904 | SRS421364 | SRX278504 | GEO | GSM1142700: p53 ChIP LCL nutlin-3 treated; Homo sapiens; ChIP-Seq | ChIP-Seq | SINGLE - | GEO Sample: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM1142700 | GEO Accession: GSM1142700 | NA | source_name: lymphoblastoid cells || cell type: nutlin-3 treated lymphoblastoid cells || coriell id: GM12878 || chip antibody: mouse monoclonal anti-human p53 (BD Pharmingen, cat# 554294) || BioSampleModel: Generic | GEO Sample GSM1142700: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM1142700 |
4981 | SRS371783 | SRX199902 | GEO | GSM1022674: UW_ChipSeq_A549_InputRep1 | ChIP-Seq | SINGLE - | GEO Web Link: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM1022674 | GEO Accession: GSM1022674 | NA | source_name: A549 || biomaterial_provider: ATCC || lab: UW || lab description: Stamatoyannopoulous - University of Washington || datatype: ChipSeq || datatype description: Chromatin IP Sequencing || cell: A549 || cell organism: human || cell description: epithelial cell line derived from a lung carcinoma tissue. (PMID: 175022), “This line was initiated in 1972 by D.J. Giard, et al. through explant culture of lung carcinomatous tissue from a 58-year-old caucasian male.” - ATCC, newly promoted to tier 2: not in 2011 analysis || cell karyotype: cancer || cell lineage: endoderm || cell sex: M || antibody: Input || antibody description: Control signal which may be subtracted from experimental raw signal before peaks are called. || treatment: None || treatment description: No special treatment or protocol applies || control: std || control description: Standard input signal for most experiments. || controlid: wgEncodeEH001904 || labexpid: DS18301 || labversion: WindowDensity-bin20-win+/-75 || replicate: 1 || BioSampleModel: Generic | GEO Sample GSM1022674: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM1022674 |
4619 | SRS365824 | SRX190055 | GEO | GSM945272: UW_ChipSeq_HRPEpiC_Input | ChIP-Seq | SINGLE - | GEO Web Link: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM945272 | GEO Accession: GSM945272 | NA | source_name: HRPEpiC || biomaterial_provider: ScienCell || lab: UW || lab description: Stamatoyannopoulous - University of Washington || datatype: ChipSeq || datatype description: Chromatin IP Sequencing || cell: HRPEpiC || cell organism: human || cell description: retinal pigment epithelial cells || cell karyotype: normal || cell lineage: ectoderm || cell sex: U || antibody: Input || antibody description: Control signal which may be subtracted from experimental raw signal before peaks are called. || treatment: None || treatment description: No special treatment or protocol applies || control: std || control description: Standard input signal for most experiments. || controlid: wgEncodeEH000962 || labexpid: DS16014 || labversion: Bowtie 0.12.7 || replicate: 1 || BioSampleModel: Generic | GEO Sample GSM945272: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM945272 |
911 | SRS117344 | SRX028649 | GEO | GSM608166: H3K27me3_K562_ChIP-seq_rep1 | ChIP-Seq | SINGLE - | GEO Web Link: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM608166 | GEO Accession: GSM608166 | NA | source_name: chronic myeloid leukemia cell line || cell line: K562 || harvest date: 2008-06-12 || chip antibody: CST monoclonal rabbit rabbit anti-H3K27me3 || BioSampleModel: Generic | GEO Sample GSM608166: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM608166 |
4244 | SRS362733 | SRX186665 | GEO | GSM1003469: Broad_ChipSeq_Dnd41_H3K79me2 | ChIP-Seq | SINGLE - | GEO Web Link: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM1003469 | GEO Accession: GSM1003469 | NA | source_name: Dnd41 || biomaterial_provider: DSMZ || datatype: ChipSeq || datatype description: Chromatin IP Sequencing || antibody antibodydescription: Rabbit polyclonal antibody raised against a peptide containing K79 di-methylation. Antibody Target: H3K79me2 || antibody targetdescription: H3K79me2 is a mark of the transcriptional transition region - the region between the initiation marks (K4me3, etc) and the elongation marks (K36me3). || antibody vendorname: Active Motif || antibody vendorid: 39143 || controlid: wgEncodeEH002434 || replicate: 1,2 || softwareversion: ScriptureVPaperR3 || cell sex: M || antibody: H3K79me2 || antibody antibodydescription: Rabbit polyclonal antibody raised against a peptide containing K79 di-methylation. Antibody Target: H3K79me2 || antibody targetdescription: H3K79me2 is a mark of the transcriptional transition region - the region between the initiation marks (K4me3, etc) and the elongation marks (K36me3). || antibody vendorname: Active Motif || antibody vendorid: 39143 || treatment: None || treatment description: No special treatment or protocol applies || control: std || control description: Standard input signal for most experiments. || controlid: Dnd41/Input/std || softwareversion: ScriptureVPaperR3 || BioSampleModel: Generic | GEO Sample GSM1003469: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM1003469 |
7502 | SRS494656 | SRX369112 | GEO | GSM1252315: CHG092; Homo sapiens; ChIP-Seq | ChIP-Seq | SINGLE - | GEO Sample GSM1252315: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM1252315 | GEO Accession: GSM1252315 | NA | source_name: Gastric Primary Sample || tissuetype: Tumor || chip antibody: H3K4me1 || reads length: 101 || BioSampleModel: Generic | GEO Sample GSM1252315: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM1252315 |
2127 | SRS266173 | SRX099863 | GEO | GSM808752: MCF7_CTCF_REP1 | ChIP-Seq | SINGLE - | GEO Web Link: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM808752 | GEO Accession: GSM808752: | NA | source_name: breast adenocarcinoma cells || cell type: breast adenocarcinoma cells || cell line: MCF7 || antibody: CTCF || BioSampleModel: Generic | GEO Sample GSM808752: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM808752 |
6299 | SRS468164 | SRX332680 | GEO | GSM1204476: Input DNA for ChIP; Homo sapiens; ChIP-Seq | ChIP-Seq | SINGLE - | GEO Sample GSM1204476: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM1204476 | GEO Accession: GSM1204476 | NA | source_name: MDAMB231 || cell line: MDAMB231 || chip antibody: input || BioSampleModel: Generic | GEO Sample GSM1204476: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM1204476 |
832 | SRS115184 | SRX027300 | GEO | GSM593367: H3K4me3_H3 | ChIP-Seq | SINGLE - | GEO Web Link: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM593367 | GEO Accession: GSM593367 | NA | source_name: LCL || chip antibody: H3K4me3 || cell type: lymphoblastoid cell line || BioSampleModel: Generic | GEO Sample GSM593367: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM593367 |
8638 | SRS598154 | SRX528309 | GEO | GSM1375207: H3_ChIPSeq_Human; Homo sapiens; ChIP-Seq | ChIP-Seq | SINGLE - | GEO Sample GSM1375207: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM1375207 | GEO Accession: GSM1375207 | NA | source_name: H3_ChIPSeq_Human || donor age: adult || cell type: sperm || chip antibody: H3F3B || chip antibody vendor: Abnova || BioSampleModel: Generic | GEO Sample GSM1375207: http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM1375207 |
The Onassis EntityFinder
class has methods for annotating any text with dictionary terms. More specifically, Onassis can take advantage of the OBO dictionaries (http://www.obofoundry.org/), as shown in the next section where we will define relationships between different samples annotated with different ontology concepts thanks to the structure of the ontology.
Input text can be provided as:
Conceptmapper dictionaries are XML files with a set of entries specified by the xml tag <token>
with a canonical name (the name of the entry) and one or more variants (synonyms). Additional properties are allowed. The following code represents a sample of the Conceptmapper dictionary obtained from the Brenda tissue ontology.
<?xml version="1.0" encoding="UTF-8" ?>
<synonym>
<token id="http://purl.obolibrary.org/obo/BTO_0005205" canonical="cerebral artery">
<variant base="cerebral artery"/>
</token>
<token id="http://purl.obolibrary.org/obo/BTO_0002179" canonical="184A1N4 cell">
<variant base="184A1N4 cell"/>
<variant base="A1N4 cell"/>
</token>
<token id="http://purl.obolibrary.org/obo/BTO_0003871" canonical="uterine endometrial cancer cell">
<variant base="uterine endometrial cancer cell"/>
<variant base="endometrial cancer cell"/>
<variant base="uterine endometrial carcinoma cell"/>
<variant base="endometrial carcinoma cell"/>
</token>
</synonym>
The constructor CMdictionary
creates an instance of the class CMdictionary
.
dictType
option to “CMDICT”.# If a Conceptmapper dictionary is already available the dictType CMDICT can be specified and the corresponding file loaded
sample_dict <- CMdictionary(inputFileOrDb=system.file('extdata', 'cmDict-sample.cs.xml', package = 'Onassis'), dictType = 'CMDICT')
#Creation of a dictionary from the file sample.cs.obo available in OnassisJavaLibs
obo <- system.file('extdata', 'sample.cs.obo', package='OnassisJavaLibs')
sample_dict <- CMdictionary(inputFileOrDb=obo, outputDir=getwd(), synonymType='ALL')
# Creation of a dictionary for human genes/proteins
require(org.Hs.eg.db)
targets <- CMdictionary(dictType='TARGET', inputFileOrDb = 'org.Hs.eg.db')
Conceptmapper includes 7 different options controlling the annotation step. These are documented in detail in the documentation of the CMoptions function. They can be listed through the listCMOptions
function. The CMoptions
constructor instantiates an object of class CMoptions with the different parameters that will be required for the subsequent step of annotation. We also provided getter and setter methods for each of the 7 combinations
#Showing configuration permutations
opts <- CMoptions()
show(opts)
## CMoptions object to set ConceptMapper Options
## SearchStrategy: CONTIGUOUS_MATCH
## CaseMatch: CASE_INSENSITIVE
## Stemmer: NONE
## StopWords: NONE
## OrderIndependentLookup: ON
## FindAllMatches: YES
## SynonymType: ALL
combinations <- listCMOptions()
myopts <- CMoptions(SynonymType = 'EXACT_ONLY')
myopts
## CMoptions object to set ConceptMapper Options
## SearchStrategy: CONTIGUOUS_MATCH
## CaseMatch: CASE_INSENSITIVE
## Stemmer: NONE
## StopWords: NONE
## OrderIndependentLookup: ON
## FindAllMatches: YES
## SynonymType: EXACT_ONLY
#Changing the SearchStrategy parameter
SearchStrategy(myopts) <- 'SKIP_ANY_MATCH_ALLOW_OVERLAP'
myopts
## CMoptions object to set ConceptMapper Options
## SearchStrategy: SKIP_ANY_MATCH_ALLOW_OVERLAP
## CaseMatch: CASE_INSENSITIVE
## Stemmer: NONE
## StopWords: NONE
## OrderIndependentLookup: ON
## FindAllMatches: YES
## SynonymType: EXACT_ONLY
The class EntityFinder
is used to define a type system and run the Conceptmapper pipeline. It can find concepts of any OBO ontology in a given text. The findEntities
and annotateDF
methods accept text within files or data.frame, respetively, as described in Section 3.1.
The function EntityFinder
automatically adapts to the provided input type, creates an instance of the EntityFinder
class to initialize the type system and runs the pipeline with the provided options and dictionary.
For example, to annotate the metadata derived from ChIP-seq experiments obtained from SRA with tissue and cell type concepts belonging to BRENDA ontology the following code can be used:
chipseq_dict_annot <- EntityFinder(sra_chip_seq[1:20,c('sample_accession', 'title', 'experiment_attribute', 'sample_attribute', 'description')], dictionary=sample_dict, options=myopts)
## [1] "/tmp/RtmpHuvdBN"
## [1] "/tmp/RtmpHuvdBN/SRS115184.a1"
## [1] "/tmp/RtmpHuvdBN/SRS117344.a1"
## [1] "/tmp/RtmpHuvdBN/SRS213443.a1"
## [1] "/tmp/RtmpHuvdBN/SRS241934.a1"
## [1] "/tmp/RtmpHuvdBN/SRS266173.a1"
## [1] "/tmp/RtmpHuvdBN/SRS285318.a1"
## [1] "/tmp/RtmpHuvdBN/SRS336079.a1"
## [1] "/tmp/RtmpHuvdBN/SRS346539.a1"
## [1] "/tmp/RtmpHuvdBN/SRS362733.a1"
## [1] "/tmp/RtmpHuvdBN/SRS362801.a1"
## [1] "/tmp/RtmpHuvdBN/SRS365824.a1"
## [1] "/tmp/RtmpHuvdBN/SRS371783.a1"
## [1] "/tmp/RtmpHuvdBN/SRS376074.a1"
## [1] "/tmp/RtmpHuvdBN/SRS410226.a1"
## [1] "/tmp/RtmpHuvdBN/SRS421364.a1"
## [1] "/tmp/RtmpHuvdBN/SRS468164.a1"
## [1] "/tmp/RtmpHuvdBN/SRS494656.a1"
## [1] "/tmp/RtmpHuvdBN/SRS598154.a1"
## [1] "/tmp/RtmpHuvdBN/SRS636394.a1"
## [1] "/tmp/RtmpHuvdBN/SRS724993.a1"
## Conceptmapper annotations created in directory: /tmp/RtmpHuvdBN
The resulting data.frame contains for each row a match to the provided dictionary for a specific document/sample (indicated in the first column). The annotation is reported with the id of the concept (term_id), its canonical name (term name), its URL in the obo format, and the matching sentence of the document.
Table: (#tab:showchipresults)sample_id | term_id | term_name | term_url | matched_sentence |
---|---|---|---|---|
SRS115184 | CL_0000000 | cell | http://purl.obolibrary.org/obo/CL_0000000 | cell |
SRS117344 | CL_0000000 | cell | http://purl.obolibrary.org/obo/CL_0000000 | cell |
SRS213443 | CL_0000066 | epithelial cell | http://purl.obolibrary.org/obo/CL_0000066 | cell: HCPEpiC || cell organism: Human || cell description: Human Choroid Plexus Epithelial |
SRS213443 | CL_0000000 | cell | http://purl.obolibrary.org/obo/CL_0000000 | cell |
SRS213443 | CL_0000066 | epithelial cell | http://purl.obolibrary.org/obo/CL_0000066 | cell organism: Human || cell description: Human Choroid Plexus Epithelial |
SRS213443 | CL_0000066 | epithelial cell | http://purl.obolibrary.org/obo/CL_0000066 | cell description: Human Choroid Plexus Epithelial |
SRS213443 | CL_0000066 | epithelial cell | http://purl.obolibrary.org/obo/CL_0000066 | Epithelial Cells || cell |
SRS241934 | CL_0000000 | cell | http://purl.obolibrary.org/obo/CL_0000000 | cell |
SRS266173 | CL_0000000 | cell | http://purl.obolibrary.org/obo/CL_0000000 | cell |
SRS285318 | CL_0000000 | cell | http://purl.obolibrary.org/obo/CL_0000000 | cell |
SRS336079 | CL_0000236 | B cell | http://purl.obolibrary.org/obo/CL_0000236 | cell: GM12878 || cell organism: human || cell description: B |
SRS336079 | CL_0000000 | cell | http://purl.obolibrary.org/obo/CL_0000000 | cell |
SRS336079 | CL_0000236 | B cell | http://purl.obolibrary.org/obo/CL_0000236 | cell organism: human || cell description: B |
SRS336079 | CL_0000236 | B cell | http://purl.obolibrary.org/obo/CL_0000236 | cell description: B |
SRS336079 | CL_0000945 | lymphocyte of B lineage | http://purl.obolibrary.org/obo/CL_0000945 | B-lymphocyte, lymphoblastoid, International HapMap Project - CEPH/Utah - European Caucasion, Epstein-Barr Virus || cell karyotype: normal || cell lineage: mesoderm || cell sex: F || treatment: None || treatment description: No special treatment or protocol applies || antibody: Pol2(phosphoS2) || antibody antibodydescription: Rabbit polyclonal against peptide conjugated to KLH derived from within residues 1600 - 1700 of |
SRS336079 | CL_0000236 | B cell | http://purl.obolibrary.org/obo/CL_0000236 | B-lymphocyte, lymphoblastoid, International HapMap Project - CEPH/Utah - European Caucasion, Epstein-Barr Virus || cell |
SRS336079 | CL_0000236 | B cell | http://purl.obolibrary.org/obo/CL_0000236 | B-lymphocyte |
SRS336079 | CL_0000542 | lymphocyte | http://purl.obolibrary.org/obo/CL_0000542 | lymphocyte |
SRS346539 | CL_0000000 | cell | http://purl.obolibrary.org/obo/CL_0000000 | cell |
SRS362733 | CL_0000000 | cell | http://purl.obolibrary.org/obo/CL_0000000 | cell |
The function EntityFinder
can also be used to identify the targeted entity of each ChIP-seq experiment, by retrieving gene names and histone types or modifications in the ChIP-seq metadata.
#Finding the TARGET entities
target_entities <- EntityFinder(input=sra_chip_seq[1:20,c('sample_accession', 'title', 'experiment_attribute', 'sample_attribute', 'description')], options = myopts, dictionary=targets)
## [1] "/tmp/RtmpHuvdBN"
## [1] "/tmp/RtmpHuvdBN/SRS115184.a1"
## [1] "/tmp/RtmpHuvdBN/SRS117344.a1"
## [1] "/tmp/RtmpHuvdBN/SRS213443.a1"
## [1] "/tmp/RtmpHuvdBN/SRS241934.a1"
## [1] "/tmp/RtmpHuvdBN/SRS266173.a1"
## [1] "/tmp/RtmpHuvdBN/SRS285318.a1"
## [1] "/tmp/RtmpHuvdBN/SRS336079.a1"
## [1] "/tmp/RtmpHuvdBN/SRS346539.a1"
## [1] "/tmp/RtmpHuvdBN/SRS362733.a1"
## [1] "/tmp/RtmpHuvdBN/SRS362801.a1"
## [1] "/tmp/RtmpHuvdBN/SRS365824.a1"
## [1] "/tmp/RtmpHuvdBN/SRS371783.a1"
## [1] "/tmp/RtmpHuvdBN/SRS376074.a1"
## [1] "/tmp/RtmpHuvdBN/SRS410226.a1"
## [1] "/tmp/RtmpHuvdBN/SRS421364.a1"
## [1] "/tmp/RtmpHuvdBN/SRS468164.a1"
## [1] "/tmp/RtmpHuvdBN/SRS494656.a1"
## [1] "/tmp/RtmpHuvdBN/SRS598154.a1"
## [1] "/tmp/RtmpHuvdBN/SRS636394.a1"
## [1] "/tmp/RtmpHuvdBN/SRS724993.a1"
Table: (#tab:printKable)
sample_id | term_id | term_name | term_url | matched_sentence |
---|---|---|---|---|
SRS115184 | Reference T1 H3K4me3 | H3K4me3 | NA | H3K4me3 |
SRS117344 | Reference T1 H3K27me3 | H3K27me3 | NA | H3K27me3 |
SRS362733 | Reference T1 H3K79me2 | H3K79me2 | NA | H3K79me2 |
SRS362733 | Reference T2 H3K79me2 | H3K79me2 | NA | H3K79me2 |
SRS362733 | Reference T3 H3K79me2 | H3K79me2 | NA | H3K79me2 |
SRS362733 | Reference T4 H3K79me2 | H3K79me2 | NA | H3K79me2 |
SRS362733 | Reference T5 H3K79me2 | H3K79me2 | NA | H3K79me2 |
SRS362801 | Reference T1 H3K79me2 | H3K79me2 | NA | H3K79me2 |
SRS362801 | Reference T2 H3K79me2 | H3K79me2 | NA | H3K79me2 |
SRS362801 | Reference T3 H3K79me2 | H3K79me2 | NA | H3K79me2 |
SRS362801 | Reference T4 H3K79me2 | H3K79me2 | NA | H3K79me2 |
SRS362801 | Reference T5 H3K79me2 | H3K79me2 | NA | H3K79me2 |
SRS410226 | Reference T1 H3K27ac | H3K27ac | NA | H3K27ac |
SRS494656 | Reference T1 H3K4me1 | H3K4me1 | NA | H3K4me1 |
With Onassis it is possible to quantify the semantic similarity between the concepts of a given ontology using different semantic similarity measures. Similarity
is an Onassis class applying methods of the Java library slib (Harispe et al. 2014), which builds a semantic graph starting from OBO ontology concepts and their hierarchical relationships.
The following methods are available and are automatically chosen depending on the settings of the Similarity
function. The sim
and groupsim
methods allow the computation of semantic similarity between single terms (pairwise measures) and between group of terms (groupwise measures), respectively. Pairwise measures can be edge based, if they rely only on the structure of the ontology, or information-content based if they also consider the information that each term in the ontology carries. Rather, groupwise measures can be indirect, if they compute the pairwise similarity between each couple of terms, or direct if they consider each set of concepts as a whole.
The samplesim
method allows to determine the semantic similarity between two documents, each possibly associated to multiple concepts, using groupwise measures. Finally, the multisim
method allows to determine the semantic similarity between documents annotated with two or more ontologies: first samplesim
is run for each ontology, then a user defined function can be used to aggregate the resulting semantic similarities for each pair of documents.
The function listSimilarities
shows all the measures supported by Onassis. For details about the measures run {?Similarity}
.
#Instantiating the Similarity
similarities <- listSimilarities()
The following example shows the pairwise similarities between sample cell concepts obtained annotating the ChIP-seq metadata. The resnik similarity measure is used by default, which is based on the information content of the most informative common ancestor of the considered concepts. In particular, the seco information content is used by default, which determines the specificity of each concept based on the number of concepts it subsumes.
found_terms <- unique(chipseq_dict_annot$term_url)
n <- length(found_terms)
ontologyfile <- obo
pairwise_results <- data.frame(term1 = character(0), term2= character(0), value = double(0L))
for(i in 1:(n-1)){
term1 <- as.character(found_terms[i])
j = i + 1
for(k in j:n){
term2 <- as.character(found_terms[k])
two_term_similarity <- Similarity(ontologyfile, term1, term2 )
new_row <- cbind(term1, term2, two_term_similarity)
pairwise_results <- rbind(pairwise_results, new_row )
}
}
pairwise_results <- unique(pairwise_results)
pairwise_results <- merge(pairwise_results, chipseq_dict_annot[, c('term_url', 'term_name')], by.x='term2', by.y='term_url', all.x=TRUE)
colnames(pairwise_results)[length(colnames(pairwise_results))] <- 'term2_name'
pairwise_results <- merge(pairwise_results, chipseq_dict_annot[, c('term_url', 'term_name')], by.x='term1', by.y='term_url', all.x=TRUE)
colnames(pairwise_results)[length(colnames(pairwise_results))] <- 'term1_name'
pairwise_results <- unique(pairwise_results)
Table: (#tab:showing_similarity1)
In the following code the semantic similarity between two groups of terms is computed using the ui measure, a groupwise direct measure combining the intersection and the union of the set of ancestors of the two groups of concepts.
Similarity(obo, found_terms[1:2], found_terms[3])
## [1] 0.1875
Finally, the pariwise semantic similarity between ChIP-seq samples is illustrated.
annotated_samples <- as.character(as.vector(unique(chipseq_dict_annot$sample_id)))
n <- length(annotated_samples)
samples_results <- data.frame(sample1 = character(0), sample2= character(0), value = double(0L))
samples_results <- matrix(0, nrow=n, ncol=n)
rownames(samples_results) <- colnames(samples_results) <- annotated_samples
for(i in 1:(n-1)){
sample1 <- as.character(annotated_samples[i])
j = i + 1
for(k in j:n){
sample2 <- as.character(annotated_samples[k])
two_samples_similarity <- Similarity(ontologyfile, sample1, sample2, chipseq_dict_annot)
samples_results[i, k] <- samples_results[k, i] <- two_samples_similarity
}
}
diag(samples_results) <- 1
heatmap.2(samples_results, density.info = "none", trace="none", main='Semantic similarity of annotated samples', margins=c(5,5))
In this section we illustrate the use of the Onassis class to annotate the previously retrieved metadata. The method annotate
takes as input a data frame of metadata to annotate, the type of dictionary and the path of an ontology file and returns an instance of class Onassis.
onassis_annotations <- annotate(sra_chip_seq, 'OBO',obo )
## Dictionary available at: /tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/cmDict-sample.cs.xml
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS002396.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS003451.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS004400.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS004533.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS006175.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS006953.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS009067.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS009070.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS009097.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS009604.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS024927.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS025287.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS025295.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS025298.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS025373.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS025419.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS041879.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS041991.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS058881.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS059627.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS059766.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS059770.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS066186.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS066187.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS072918.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS073273.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS079404.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS084560.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS085087.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS085096.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS113684.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS113694.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS114716.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS114782.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS114796.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS114962.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS114971.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS115182.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS115184.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS117306.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS117329.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS117344.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS121257.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS121305.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS140210.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS150309.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS150662.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS150672.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS152419.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS152675.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS152688.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS152699.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS152709.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS152716.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS152751.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS152753.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS152804.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS152987.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS172158.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS172160.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS174051.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS174057.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS184266.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS189595.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS193335.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS208849.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS208855.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS209011.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS209020.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS211224.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS211291.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS211297.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS211304.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS211330.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS211339.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS211341.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS213119.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS213196.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS213220.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS213231.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS213319.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS213443.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS213447.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS213465.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS213479.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS227926.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS241934.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS241940.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS258072.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS258107.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS258260.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS259379.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS259392.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS259401.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS259409.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS260257.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS265807.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS265811.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS266173.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS266508.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS266509.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS266540.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS266551.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS266635.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS267052.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS269155.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS280737.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS280744.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS280745.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS280748.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS280808.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS281100.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS281920.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS282301.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS283107.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS284159.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS285318.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS285323.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS287094.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS287254.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS287278.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS287300.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS287353.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS287359.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS287381.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS287398.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS290310.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS290446.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS291264.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS295795.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS295815.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS300080.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS300093.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS300100.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS300101.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS307144.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS307162.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS309678.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS309788.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS310694.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS310696.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS311104.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS311296.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS334493.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS334684.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS335334.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS335777.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS335789.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS335791.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS335792.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS335826.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS335846.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS335861.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS335904.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS335942.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS335949.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS335984.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS335990.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS335993.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS336010.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS336034.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS336079.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS336086.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS336624.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS336626.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS343886.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS343919.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS343921.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS344536.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS344538.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS344542.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS345354.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS345399.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS345459.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS345679.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS346539.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS346788.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS346793.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS346807.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS347069.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS349518.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS349617.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS349621.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS351337.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS351540.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS353092.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS354092.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS355542.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS355544.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS356225.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS359529.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS359583.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS361194.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS361208.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS361601.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS362071.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS362679.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS362689.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS362706.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS362733.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS362777.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS362789.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS362798.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS362801.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS362809.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS362811.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS362888.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS364758.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365083.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365092.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365174.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365177.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365592.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365714.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365726.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365727.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365753.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365756.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365794.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365805.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365824.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365835.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365841.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365864.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365917.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365919.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365929.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365939.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365954.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365957.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365964.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS365990.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS366035.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS366054.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS366055.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS366065.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS366236.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS366237.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS367746.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS368922.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS368924.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS368927.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS368928.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS371338.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS371749.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS371783.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS372939.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS374316.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS374586.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS374588.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS374589.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS374643.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS375076.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS375824.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS376001.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS376016.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS376074.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS377452.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS377457.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS381303.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS381310.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS381512.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS385264.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS386299.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS386444.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS387641.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS387664.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS389565.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS396944.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS398497.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS398500.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS398994.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS400557.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS400558.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS407221.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS408623.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS410133.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS410134.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS410136.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS410137.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS410151.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS410158.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS410159.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS410167.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS410175.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS410202.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS410226.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS411402.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS412542.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS414508.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS414704.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS416397.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS419350.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS419955.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS421364.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS421368.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS430188.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS430712.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS430714.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS430947.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS445466.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS452629.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS453816.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS454210.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS454211.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS454563.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS454568.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS454586.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS463313.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS464111.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS464117.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS464120.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS464123.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS464918.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS465191.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS465203.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS466060.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS466301.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS466304.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS468164.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS468372.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS469492.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS469494.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS469509.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS470258.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS470259.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS470263.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS470293.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS470304.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS470330.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS470338.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS470389.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS470399.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS472908.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS473794.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS474132.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS475121.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS477196.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS477846.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS477855.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS478217.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484672.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484714.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484738.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484739.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484755.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484773.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484833.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484897.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484899.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484930.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484952.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484968.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484983.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484984.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS484993.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS485000.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS487613.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS487628.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS487679.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS487686.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS487730.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS487743.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS487749.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS487820.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS487823.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS487827.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS487987.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS492415.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS492943.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS492949.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS493140.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS493410.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS493413.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS494450.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS494624.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS494651.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS494656.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS494681.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS496960.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS496967.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS496980.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS500572.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS503374.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS505707.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS505721.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS506284.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS506287.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS506296.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS506305.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS508692.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS510492.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS516464.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS516636.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS516640.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS518763.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS519329.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS519338.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS519341.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS519352.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS519370.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS519416.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS519426.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS519445.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS527935.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS528926.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS542934.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS550973.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS554870.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS557137.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS557298.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS558076.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS558501.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS558508.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS558514.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS558520.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS558833.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS561504.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS561533.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS562623.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS562626.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS562628.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS566205.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS566206.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS566209.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS572264.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS573791.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS573797.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS573800.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS573818.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS580028.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS583624.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS592870.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS598154.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS599761.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS606839.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS614410.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS620726.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS636382.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS636383.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS636389.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS636394.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS636395.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS636406.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS641760.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS641813.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS645144.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS652923.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS654165.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS655874.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS659298.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS661430.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS661919.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS661923.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS663692.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS663693.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS664770.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS668314.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS672070.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS672077.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS672471.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS672477.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS674239.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS675407.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS677532.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS699612.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS701829.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS701867.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS701884.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS701888.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS701896.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS701912.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS701921.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS701930.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS701938.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS701949.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS701957.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS708078.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS708845.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS709456.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS716511.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS716512.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS716548.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS716571.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS719021.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS720020.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS720027.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS720029.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS722181.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS724194.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS724993.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS729828.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS736443.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS738599.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS746085.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS753874.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS753876.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS789226.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS792420.a1"
## [1] "/tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes/SRS804879.a1"
## Conceptmapper annotations created in directory: /tmp/RtmpqQmrWy/Rbuild5e41f44abae/Onassis/vignettes
To retrieve the annotations we provided the accessor method entities
onassis_entities <- entities(onassis_annotations)
head(onassis_entities[sample(nrow(onassis_entities), 10),])
## sample_id term_id term_name term_url
## 1: SRS542934 CL_0000000 cell http://purl.obolibrary.org/obo/CL_0000000
## 2: SRS361601 CL_0000000 cell http://purl.obolibrary.org/obo/CL_0000000
## 3: SRS506284 CL_0000000 cell http://purl.obolibrary.org/obo/CL_0000000
## 4: SRS452629 CL_0000000 cell http://purl.obolibrary.org/obo/CL_0000000
## 5: SRS411402 CL_0000000 cell http://purl.obolibrary.org/obo/CL_0000000
## 6: SRS487686 CL_0000000 cell http://purl.obolibrary.org/obo/CL_0000000
## matched_sentence
## 1: cell
## 2: cell
## 3: cell
## 4: cell
## 5: cell
## 6: cell
The filterconcepts
method can be used to filter out unwanted annotations. It takes the Onassis object and removes from its entities the undesired concepts.
filtered_onassis <- filterconcepts(onassis_annotations, c('cell'))
head(entities(filtered_onassis))
## sample_id term_id term_name
## 26 SRS114716 CL_0000988 hematopoietic cell
## 38 SRS150662 CL_0000066 epithelial cell
## 55 SRS193335 CL_0000988 hematopoietic cell
## 74 SRS213465 CL_0000236,CL_0000542 B cell,lymphocyte
## 84 SRS259401 CL_0000236 B cell
## 91 SRS266509 CL_0000066 epithelial cell
## term_url
## 26 http://purl.obolibrary.org/obo/CL_0000988
## 38 http://purl.obolibrary.org/obo/CL_0000066
## 55 http://purl.obolibrary.org/obo/CL_0000988
## 74 http://purl.obolibrary.org/obo/CL_0000236,http://purl.obolibrary.org/obo/CL_0000542
## 84 http://purl.obolibrary.org/obo/CL_0000236
## 91 http://purl.obolibrary.org/obo/CL_0000066
## matched_sentence
## 26 cell, hematopoietic cell
## 38 cell, epithelial cell
## 55 cell, hematopoietic cell
## 74 cell, B-Lymphocyte, Lymphocyte
## 84 B-cell, cell
## 91 cell, epithelial cell
The method sim
cretes a matrix of the semantic similarities between the annotations of each couple of samples annotated in the entities slot of an Onassis object.
filtered_onassis <- sim(filtered_onassis)
Annotations with semantic similarities above a given threshold can be unified using the method collapse
. This method unifies the similar annotations by concatenating their unique concepts. Entities are replaced with the new concatenated annotations. For each concept in the concatenated annotations the number of samples associated is also reported, together with the total number of samples annotated with the new annotations.
The similarity slot will be consequently updated
collapsed_onassis <- Onassis::collapse(filtered_onassis, 0.8)
head(entities(collapsed_onassis))
## term_url sample_id term_id
## 1 http://purl.obolibrary.org/obo/CL_0000066 SRS150662 CL_0000066
## 2 http://purl.obolibrary.org/obo/CL_0000066 SRS366055 CL_0000066
## 3 http://purl.obolibrary.org/obo/CL_0000066 SRS365917 CL_0000066
## 4 http://purl.obolibrary.org/obo/CL_0000066 SRS266509 CL_0000066
## 5 http://purl.obolibrary.org/obo/CL_0000066 SRS266540 CL_0000066
## 6 http://purl.obolibrary.org/obo/CL_0000066 SRS371749 CL_0000066
## term_name matched_sentence short_label cluster
## 1 epithelial cell cell, epithelial cell epithelial cell [10] (10) 2
## 2 epithelial cell cell, epithelial cell epithelial cell [10] (10) 2
## 3 epithelial cell cell, epithelial cell epithelial cell [10] (10) 2
## 4 epithelial cell cell, epithelial cell epithelial cell [10] (10) 2
## 5 epithelial cell cell, epithelial cell epithelial cell [10] (10) 2
## 6 epithelial cell cell, epithelial cell epithelial cell [10] (10) 2
heatmap.2(simil(collapsed_onassis))
Galeota, Eugenia, and Mattia Pelizzola. 2016. “Ontology-Based Annotations and Semantic Relations in Large-Scale (Epi) Genomics Data.” Briefings in Bioinformatics. Oxford Univ Press, bbw036.
Harispe, Sébastien, Sylvie Ranwez, Stefan Janaqi, and Jacky Montmain. 2014. “The Semantic Measures Library and Toolkit: Fast Computation of Semantic Similarity and Relatedness Using Biomedical Ontologies.” Bioinformatics 30 (5). Oxford Univ Press:740–42.
Verspoor, K., W. Baumgartner Jr, C. Roeder, and L. Hunter. 2009. “Abstracting the Types away from a UIMA Type System.” From Form to Meaning: Processing Texts Automatically. Tübingen:Narr, 249–56.