rapids/docs/usage/installation.rst

55 lines
1.3 KiB
ReStructuredText

Installation
===============
This instructions have been tested on MacOS Cataline and Ubuntu 16.04. If you find a problem, please report it.
Install MySQL
- ``brew install mysql``
- ``brew services start mysql``
Install R and rmarkdown:
- ``brew install r``
- ``brew install pandoc``
- ``R -e 'install.packages(c( "rmarkdown"))'``
Install miniconda:
For Mac:
- ``brew cask install miniconda``
- ``conda init zsh`` or - ``conda init bash``
Clone our repo:
- ``git clone https://github.com/carissalow/moshi-aware-pipeline``
Create a python virtual environment:
- ``conda env create -f environment.yml``
- Restart terminal if necessary
- ``conda activate moshi-env``
Install r packages and virtual environment:
- ``snakemake packrat_install``
- ``snakemake packrat_init``
- ``snakemake packrat_restore``
Configure the participants to analyze:
- Add a file per participant and name it with the label for that participant, no extension is necessary: ``/data/external/pxx``
- Add a line with the device_id for that participant as it appears on the db
- Add a line with the mobile platform (Android, or iOS)
Configure the db connection:
- Create an empty .env file in the root folder
- Add and complete the following lines
| ``[MY_GROUP_NAME]``
| ``user=MyUSER``
| ``password=MyPassword``
| ``host=MyIP``
| ``port=3306``