| gdb.create_linked | R Documentation |
Creates a new database directory structure with symbolic links to the parent database's seq/ directory and chrom_sizes.txt file.
gdb.create_linked(path, parent)
path |
Path for the new linked database |
parent |
Path to the parent database (with seq and chrom_sizes.txt) |
This is useful for creating a writable database that shares sequence
data with a read-only main database. The new database can be set as the
working database via gsetroot(), and then the parent database
can be loaded as a dataset via gdataset.load().
Invisible TRUE on success
gsetroot, gdb.create,
gdataset.load, gdataset.ls
## Not run:
# Create linked database sharing sequence data with main database
gdb.create_linked("~/my_tracks", parent = "/shared/genomics/hg38")
# Set linked database as working database and load parent as dataset
gsetroot("~/my_tracks")
gdataset.load("/shared/genomics/hg38")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.