Unverified Commit b5c19c10 authored by Chris Cheshire's avatar Chris Cheshire Committed by GitHub
Browse files

Merge pull request #129 from luslab/dev

Release Updates
parents 89a1af53 e58873cf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
[![GitHub Actions CI Status](https://github.com/nf-core/cutandrun/workflows/nf-core%20CI/badge.svg)](https://github.com/nf-core/cutandrun/actions?query=workflow%3A%22nf-core+CI%22)
[![GitHub Actions Linting Status](https://github.com/nf-core/cutandrun/workflows/nf-core%20linting/badge.svg)](https://github.com/nf-core/cutandrun/actions?query=workflow%3A%22nf-core+linting%22)
[![AWS CI](https://img.shields.io/badge/CI%20tests-full%20size-FF9900?logo=Amazon%20AWS)](https://nf-co.re/cutandrun/results)
[![Cite with Zenodo](http://img.shields.io/badge/DOI-10.5281/zenodo.XXXXXXX-1073c8)](https://doi.org/10.5281/zenodo.XXXXXXX)
[![Cite with Zenodo](http://img.shields.io/badge/DOI-10.5281/zenodo.5653535-1073c8)](https://doi.org/10.5281/zenodo.5653535)

[![Nextflow](https://img.shields.io/badge/nextflow%20DSL2-%E2%89%A521.10.3-23aa62.svg)](https://www.nextflow.io/)
[![run with conda](http://img.shields.io/badge/run%20with-conda-3EB049?logo=anaconda)](https://docs.conda.io/en/latest/)
+55 −55

File changed.

Preview size limit exceeded, changes collapsed.

+0 −8
Original line number Diff line number Diff line
FROM nfcore/base:1.14
LABEL authors="chris.cheshire@crick.ac.uk" \
        description="Docker image containing all requirements for development of static reports"

# Install conda packages
COPY ./environment.yml /
RUN conda env create -f /environment.yml && conda clean -a
ENV PATH /opt/conda/envs/reporting/bin:$PATH
+0 −3
Original line number Diff line number Diff line
#!/bin/bash

docker build -f dev/docker/static_reports/Dockerfile -t luslab/cutandrun-dev-reporting:latest dev/docker/static_reports
+0 −16
Original line number Diff line number Diff line
# conda env create -f environment.yml
name: reporting
channels:
  - conda-forge
  - bioconda
  - defaults
dependencies:
  # python version
  - python=3.8.3

  # conda packages
  - numpy=1.20.*
  - pandas=1.2.*
  - seaborn=0.11.*
  - pyranges=0.0.96
  - pysam=0.16.0.1
Loading