Skip to content

Development repository for the multiMiR database's R API

License

Notifications You must be signed in to change notification settings

KechrisLab/multiMiR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

multiMiR

Build Status codecov biocdownloads inBioc

DB update is available 8/28/24 (Thank you for your patience)

The multiMiR web server hosts a database containing miRNA-target interactions from external databases. The package multiMiR provides functions to communicate with the multiMiR web server and its database.

Note this repository is where active development occurs (think 'nightly' builds). The recommended release and devel versions are available via Bioconductor (as of Bioconductor 3.6).

# To install multiMiR, use BiocManager::install()
if (!requireNamespace("BiocManager", quietly=TRUE))
    install.packages("BiocManager")
BiocManager::install()
BiocManager::install("multiMiR")

Terminology used in package:

  • sql components: SELECT or FROM or ON or WHERE... etc. (mmsql_components class)
  • sql features: specific to this DB and the options used to generate meaningful queries (i.e. mirna; conserved; table type: validated, predicted; etc.)
  • sql: a complete sql statement (mmsql class)
  • query: table result of sql statement (mmquery class), class includes sql statement and parts.

* Warning * There are issues with merging target IDs from older unmaintained databases. Databases that have been updated more recently (1-2 years) use current versions of annotated IDs. In each update these old target IDs are carried over due to a lack of a reliable method to disambiguate the original ID with current IDs. Please keep this in mind with results from older databases that have not been updated. We continue to look at methods to resolve these ambiguities and improve target agreement between databases. You can use the unique() R function to identify and then remove multiple target genes if needed.