Skip to content

Commit

Permalink
adds appropriate channel dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Brown committed Apr 27, 2017
1 parent 18906a3 commit ffc88b7
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 4 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,21 @@ https://pnnl.github.io/fqc/

Parsing the table and running `FastQC` is performed with code written for
Python 3. We recommend using [Anaconda](https://www.continuum.io/downloads) to
install the FastQC dependency:
install the FastQC dependency.

## Set Up BIOCONDA channels

```
conda config --add channels conda-forge
conda config --add channels defaults
conda config --add channels r
conda config --add channels bioconda
```

## Install Dependency

```
conda install -c bioconda fastqc
conda install fastqc
```


Expand Down
20 changes: 18 additions & 2 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,25 @@ Requires

Parsing the table and running ``FastQC`` is performed with code written for
Python 3. We recommend using Anaconda (https://www.continuum.io/downloads) to
install the FastQC dependency::
install the FastQC dependency.

conda install -c bioconda fastqc
Set Up BIOCONDA channels
''''''''''''''''''''''''

::

conda config --add channels conda-forge
conda config --add channels defaults
conda config --add channels r
conda config --add channels bioconda


Install Dependency
''''''''''''''''''

::

conda install fastqc


Install
Expand Down

0 comments on commit ffc88b7

Please sign in to comment.