Sign inSign up

kantale/pypedia

By kantale

Updated almost 11 years ago

A ready to use pypedia environment http://www.pypedia.com

Image
1

245

kantale/pypedia repository overview

This is an image that contains:

  • Anaconda: a python collection of packages for science, math, engineering and data analysis http://continuum.io/downloads
  • Fonts and tools to compile latex documents
  • The pypedia python library.

The focus on this image is to be able to reproduce analysis and create qualitative figures ready for publishing with the help of methods hosted in the pypedia project.

Dockerfile:

FROM continuumio/anaconda:latest
MAINTAINER Alexandros Kanterakis <[email protected]>

RUN apt-get -y update && apt-get install -y \
	git \
	gcc \
	g++ \
	zlibc zlib1g zlib1g-dev \
	xpdf \
	vim \
	texlive-latex-extra \
	texlive-latex-base texmaker texlive-fonts-recommended texlive-science texlive-publishers texlive-fonts-extra texlive-math-extra \
	dvipng
	
RUN echo "y" | conda update conda 

RUN pip install \
	brewer2mpl \
	biopython \
	pybedtools

RUN git clone https://github.com/kantale/pypedia.git ; cd pypedia; python setup.py install ; cd


CMD ["/bin/bash"]

Tag summary

Content type

Image

Digest

sha256:60e07c30f

Size

1.7 GB

Last updated

almost 11 years ago

docker pull kantale/pypedia