Description Usage Arguments Details Value Author(s) References See Also Examples
View source: R/buildSpliceSites.R
Functions to make a query on PALSdb, and build objects from the result of a query.
1 2 3 4 5 6 7 8 9 10 11 12 13 | queryPALSdb(query, disp = c("data", "browser"),
field = c("keyword", "ug.id", "gb.id", "human.cytoband", "mouse.cytoband", "cluster_count"),
species = c("human", "mouse"),
e.value = "1e-1",
ident.threshold = c("90% 50b", "95% 50b", "90% 45b"))
getPALSdbURL(query, disp = c("data", "browser"),
field = c("keyword", "ug.id", "gb.id", "human.cytoband", "mouse.cytoband", "cluster_count"),
species = c("human", "mouse"),
e.value = "1e-1",
ident.threshold = c("90% 50b", "95% 50b", "90% 45b"))
buildSpliceSites(xml, verbose=TRUE)
|
query |
query string |
xml |
an object of class XML (as returned by
|
disp |
(idem |
field |
The field on which the query will be based |
species |
the specie to work with |
e.value |
E-value |
ident.threshold |
threshold for matching sequences |
verbose |
verbose output. |
queryPALSdb
returns an an object of class XML when disp =
"data"
.
The function buildSpliceSites
constructs SpliceSites
objects from the XML data. The variables in the slots
spsiteIpos.pData
and spsiteIIpos.pData
are at least
tissue
(tissue information), histology
and site
(site numbering).
An object of class XML
for queryPALSdb
, an URL for
getPALSdbURL
or a list
of objects of class SpliceSites
.
laurent@cbs.dtu.dk
"Standardazed output for putative alternative splicing: application to the study of splice variants with microarrays", Gautier L. et al., 2003, manuscript in preparation.
1 2 3 4 5 6 7 | library(XML)
filename <- system.file("extdata", "example.xml", package="splicegear")
xml <- xmlTreeParse(filename, asTree=TRUE)
spsites <- buildSpliceSites(xml)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.