Conversation
|
The NCBI genome downloader is missing as a dependency. We installed via
Could this be added? |
gedankenstuecke
left a comment
There was a problem hiding this comment.
I went through the whole file again and found some things that should be adapted before merging the image. :)
| # Base Image | ||
| FROM ncbihackathon/ncbihackathonbase:latest | ||
|
|
||
| # Metadata |
There was a problem hiding this comment.
The meta data should be adapted to STREAMclean I think.
| cd / && \ | ||
| rm -rf $DST/$FOLDER | ||
|
|
||
| # BAMTools 2.5.1 |
There was a problem hiding this comment.
We don't need BAMtools (if I'm not mistaken!)
| make install && \ | ||
| rm -rf $DST/$FOLDER $DST/$ZIP | ||
|
|
||
| # STAR 2.5.3a |
There was a problem hiding this comment.
Star can be removed completely
|
|
||
| USER biodocker | ||
|
|
||
| RUN git clone --recursive https://github.com/NCBI-Hackathons/NanoporeMapper.git |
There was a problem hiding this comment.
The URL for the repo has changed to https://github.com/NCBI-Hackathons/STREAMclean.git (the old URL works as GitHub handles redirects when repos are renamed, but would probably be nicer to have a clean setup)
| mv $DST/$FOLDER/LICENSE $DST/$FOLDER/README /home/biodocker/bin/ && \ | ||
| mv $DST/$FOLDER/bin/* /home/biodocker/bin/ && \ | ||
| rm -rf $DST/$FOLDER | ||
|
|
There was a problem hiding this comment.
The python modules need to be installed in order for the pipeline to run. I guess
RUN cd ~/STREAMclean & pip install -r requirements.txt should do the trick?
No description provided.