Skip to content

Commit

Permalink
Merge pull request #855 from Kincekara/busco-prok-fix
Browse files Browse the repository at this point in the history
busco-prok fix
  • Loading branch information
erinyoung authored Jan 26, 2024
2 parents fcbcf6c + 8f85de8 commit 88b41f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions busco/5.6.1-prok-bacteria_odb10_2024-01-08/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ RUN wget https://gitlab.com/ezlab/busco/-/archive/${BUSCO_VER}/busco-${BUSCO_VER
python3 setup.py install

# download bacteria_odb10
RUN mkdir data && cd data &&\
busco --download bacteria_odb10
RUN busco --download bacteria_odb10

ENV PATH="${PATH}:/sepp-package/sepp"
ENV LC_ALL=C
Expand All @@ -68,7 +67,7 @@ FROM app as test
# offline test
RUN wget -q https://ftp.ncbi.nlm.nih.gov/genomes/all/GCA/010/941/835/GCA_010941835.1_PDT000052640.3/GCA_010941835.1_PDT000052640.3_genomic.fna.gz && \
gzip -d GCA_010941835.1_PDT000052640.3_genomic.fna.gz && \
busco --offline -l bacteria_odb10 -m genome -i GCA_010941835.1_PDT000052640.3_genomic.fna -o offline --cpu 4 && \
busco --offline -l /busco_downloads/lineages/bacteria_odb10 -m genome -i GCA_010941835.1_PDT000052640.3_genomic.fna -o offline --cpu 4 && \
head offline/short_summary*.txt

# auto-lineage-prok
Expand Down
2 changes: 1 addition & 1 deletion busco/5.6.1-prok-bacteria_odb10_2024-01-08/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This is a BUSCO docker image which has basic functions for prokaryotes only. Thi
## Example Usage
```bash
# offline usage with bacteria lineage
busco --offline -i assembly.fasta -l bacteria_odb10 -o output -m genome
busco --offline -i assembly.fasta -l /busco_downloads/lineages/bacteria_odb10 -o output -m genome
# auto lineage selection
busco -i assembly.fasta -o output -m genome --auto-lineage-prok
```

0 comments on commit 88b41f1

Please sign in to comment.