-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adds verkko #890
Merged
Merged
adds verkko #890
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
FROM mambaorg/micromamba:1.5.6 as app | ||
|
||
ARG VERKKO_VER="2.0" | ||
|
||
USER root | ||
|
||
WORKDIR / | ||
|
||
LABEL base.image="mambaorg/micromamba:1.5.6" | ||
LABEL dockerfile.version="1" | ||
LABEL software="Verkko" | ||
LABEL software.version="${VERKKO_VER}" | ||
LABEL description="Verkko is a hybrid genome assembly pipeline developed for telomere-to-telomere assembly of PacBio HiFi or Oxford Nanopore Duplex and Oxford Nanopore simplex reads." | ||
LABEL website="https://github.com/marbl/verkko" | ||
LABEL license="https://github.com/marbl/verkko/blob/master/README.licenses" | ||
LABEL maintainer="Kutluhan Incekara" | ||
LABEL maintainer.email="[email protected]" | ||
|
||
RUN apt-get update && apt-get install --no-install-recommends -y \ | ||
procps \ | ||
curl && \ | ||
apt-get autoclean && rm -rf /var/lib/apt/lists/* | ||
|
||
RUN micromamba install --name base -c conda-forge -c bioconda verkko=${VERKKO_VER} && \ | ||
micromamba clean -a -y | ||
|
||
ENV PATH="/opt/conda/bin/:${PATH}" \ | ||
LC_ALL=C.UTF-8 | ||
|
||
CMD [ "verkko", "--help" ] | ||
|
||
WORKDIR /data | ||
|
||
## Test ## | ||
FROM app as test | ||
|
||
ENV ENV_NAME="base" | ||
ARG MAMBA_DOCKERFILE_ACTIVATE=1 | ||
|
||
RUN apt-get update && apt-get install --no-install-recommends -y curl | ||
|
||
# test data | ||
RUN curl -L https://obj.umiacs.umd.edu/sergek/shared/ecoli_hifi_subset24x.fastq.gz -o hifi.fastq.gz &&\ | ||
curl -L https://obj.umiacs.umd.edu/sergek/shared/ecoli_ont_subset50x.fastq.gz -o ont.fastq.gz | ||
|
||
# verkko test run | ||
RUN verkko -d asm --hifi ./hifi.fastq.gz --nano ./ont.fastq.gz &&\ | ||
head asm/assembly.hifi-coverage.csv &&\ | ||
head asm/assembly.fasta | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Verkko container | ||
|
||
Main tool: [verkko](https://github.com/marbl/verkko) | ||
|
||
Code repository: https://github.com/marbl/verkko | ||
|
||
Basic information on how to use this tool: | ||
- executable: verkko | ||
- help: --help | ||
- version: --version | ||
- description: Verkko is a hybrid genome assembly pipeline developed for telomere-to-telomere assembly of PacBio HiFi or Oxford Nanopore Duplex and Oxford Nanopore simplex reads. | ||
|
||
Full documentation: https://github.com/marbl/verkko | ||
|
||
## Example Usage | ||
|
||
```bash | ||
verkko -d <work-directory> --hifi <hifi-read-files> [--nano <ont-read-files>] | ||
``` | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This prints a lot to the screen. I have a hunch that
head asm/assembly.fasta
might the culprit. Can we try something likewc -l asm/assembly.fasta
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think contig sequences are written in one line, so head gives a lot of outbut. I limit output with 1000 bytes. That should work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
It's much easier to read now.