The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
The misha
package is a toolkit for analysis of genomic
data. it implements an efficient data structure for storing genomic
data, and provides a set of functions for data extraction, manipulation
and analysis.
You can install the released version of misha from CRAN with:
install.packages("misha")
And the development version from GitHub with:
::install_github("tanaylab/misha") remotes
See the Genomes vignette for instructions on how to create a misha database for common genomes.
See the user manual for more usage details.
Starting in misha
4.2.0, the package no longer stores
global variables such as ALLGENOME
or GROOT
.
Instead, these variables are stored in a special environment called
.misha
. This means that scripts written for older versions
of misha
will no longer work. To run such scripts, either
add a prefix of .misha$
to all those variables
(.misha$ALLGENOME
instead of ALLGENOME
), or
run the following command before running the script:
<<- .misha$ALLGENOME
ALLGENOME <<- .misha$GROOT
GROOT <<- .misha$ALLGENOME
ALLGENOME <<- .misha$GINTERVID
GINTERVID <<- .misha$GITERATOR.INTERVALS
GITERATOR.INTERVALS <<- .misha$GROOT
GROOT <<- .misha$GWD
GWD <<- .misha$GTRACKS GTRACKS
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.