containers icon indicating copy to clipboard operation
containers copied to clipboard

container upgrade request: mothur

Open didillysquat opened this issue 3 years ago • 3 comments

Hi there,

Thanks for your work.

Would it be possible to upgrade the biocontainer's mothur image to a new version. The 1.41 version you currently have available has some annoying bugs in the make.contigs command where mothur breaks when trying to make contigs directly from gzipped fastq files.

An upgrade to either 1.44.3 or 1.45.0 would be appreciated.

Thanks so much.

didillysquat avatar Mar 25 '21 14:03 didillysquat

Hi, feel free to create a pull request to update it ;-)

Else will need to wait for a team member time to manage it

osallou avatar Mar 25 '21 15:03 osallou

current mother container is based on Debian package, which is still v1.41. Need debian release will add v1.44 If you need a more recent version , then a specific mothur install (from source) is needed

osallou avatar Mar 31 '21 09:03 osallou

@osallou . Apologies for the delay. Thanks for the update. I imagine v1.44 would be helpful for most users. Due to time constraints, in the end, I modified an existing very simple docker image to get the job done. This is the contents of the docker image. Feel free to make use of it if it makes life easier.

FROM ubuntu:groovy-20210225

MAINTAINER Benjamin Hume <[email protected]>

RUN apt-get update && apt-get -y install wget unzip && \
    wget https://github.com/mothur/mothur/releases/download/v.1.45.0/Mothur.Ubuntu_20.zip && \
    unzip Mothur.Ubuntu_20.zip && \
    rm Mothur.Ubuntu_20.zip && \
    rm -rf __MACOSX

#adds executables to the path
ENV PATH /mothur:$PATH

didillysquat avatar Apr 07 '21 14:04 didillysquat

We have here also some recent containers: https://quay.io/repository/biocontainers/mothur?tab=tags

Hope that helps! Bjoern

bgruening avatar Jan 17 '24 12:01 bgruening