An open API service indexing awesome lists of open source software.

https://github.com/bcbi/predictmdextra.jl


https://github.com/bcbi/predictmdextra.jl

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# PredictMDExtra










PredictMDExtra is a meta-package that installs all of the Julia dependencies
of [PredictMD](https://predictmd.net) (but not PredictMD itself).

Installing PredictMDExtra does not install PredictMD. If you would like a
convenient way of installing PredictMD and all of its Julia dependencies,
see [PredictMDFull](https://github.com/bcbi/PredictMDFull.jl).

| Table of Contents |
| ----------------- |
| [Installation](#installation) |

## Installation

PredictMDExtra is registered in the Julia General registry. Therefore, to
install PredictMDExtra, simply open Julia and run the following four lines:
```julia
import Pkg
Pkg.activate("PredictMDEnvironment"; shared = true)
Pkg.add("PredictMDExtra")
import PredictMDExtra
```

That being said, PredictMDExtra is not very useful by itself. Instead, I
recommend that you install PredictMDFull, which includes both PredictMD and
PredictMDExtra. To install PredictMDFull, simply open Julia and run the
following four lines:
```julia
import Pkg
Pkg.activate("PredictMDEnvironment"; shared = true)
Pkg.add("PredictMDFull")
import PredictMDFull
```