graph.graphdb (url = NULL, prefix = "iso", type = "r001", nodes = NULL,
pair = "A", which = 0, base = "http://cneurocvs.rmki.kfki.hu/graphdb/gzip",
compressed = TRUE, directed = TRUE)
NULL
it is a complete URL with the file to import.iso
, i2
, si4
, si6
, mcs10
,
mcs30
, mcs50
, mcs70
, mcs90
.r001
, r005
, r01
,
r02
, m2D
, m2Dr2
, m2Dr4
, m2Dr6
m3D
, A
and B
.url
is NULL
then a
.gz
graph.graphdb
reads a graph from the graph database from an FTP
or HTTP server or from a local copy. It has two modes of operation: If the url
argument is specified then it should the complete
path to a local or remote graph database file. In this case
we simply call read.graph
with the proper arguments to
read the file.
If url
is NULL
, and this is the default, then the
filename is assembled from the base
, prefix
, type
,
nodes
, pair
and which
arguments.
See the documentation for the graph database at
read.graph
, graph.isomorphic.vf2
g <- graph.graphdb(prefix="iso", type="r001", nodes=20, pair="A",
which=10, compressed=TRUE)
g2 <- graph.graphdb(prefix="iso", type="r001", nodes=20, pair="B",
which=10, compressed=TRUE)
graph.isomorphic.vf2(g, g2)g3 <- graph.graphdb(url="http://cneurocvs.rmki.kfki.hu/graphdb/gzip/iso/bvg/b06m/iso_b06m_m200.A09.gz")
Run the code above in your browser using DataLab