Sign inSign up

jcuhpc/fastaq

By jcuhpc

Updated about 8 years ago

fastaq v3.17.0

Image
1

960

jcuhpc/fastaq repository overview

FATA and FASTQ file manipulation tools. This image also includes fastahack - a utility for indexing and sequence extraction from FASTA files. Contents of the Dockerfile:

FROM ubuntu:18.04 MAINTAINER [email protected]

ENV PACKAGES fastaq fastahack

ENV FASTAQ_VERSION 3.17.0

WORKDIR /home

RUN apt-get update &&
apt-get upgrade -y &&
useradd -ms /bin/bash luser &&
printf "#!/bin/bash\nexport DEBIAN_FRONTEND=noninteractive\napt-get install -y tzdata\nln -fs /usr/share/zoneinfo/Australia/Brisbane /etc/localtime\ndpkg-reconfigure --frontend noninteractive tzdata\n" >tzinst && chmod 700 tzinst && ./tzinst && rm -f tzinst &&
apt-get install -y ${PACKAGES} &&
apt-get clean

USER luser WORKDIR /home/luser

Tag summary

Content type

Image

Digest

Size

108.7 MB

Last updated

about 8 years ago

docker pull jcuhpc/fastaq