Skip to content
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

Bump requests from 2.31.0 to 2.32.0 #261

Closed
wants to merge 12 commits into from
Closed
10 changes: 0 additions & 10 deletions Dockerfile

This file was deleted.

26 changes: 13 additions & 13 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ _Note:_ Insilicoseq requires python >= 3.5
Alternatively, with docker:

```shell
docker pull hadrieng/insilicoseq:latest
docker pull quay.io/biocontainers/insilicoseq:2.0.0--pyh7cba7a3_0
```

For more installation options, please refer to the full [documentation](http://insilicoseq.readthedocs.io)
Expand Down
5 changes: 3 additions & 2 deletions doc/iss/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,16 @@ If you wish to use InSilicoSeq using docker

.. code-block:: bash
docker pull hadrieng/insilicoseq:latest
docker pull docker pull quay.io/biocontainers/insilicoseq:<tag>
Where <tag> should be chosen amongst the tags available on `quay.io <https://quay.io/repository/biocontainers/insilicoseq?tab=tags>`_ .
To use InSilicoSeq with docker, you need to provide a `volume` to the ``docker run`` command.
Given with the ``-v`` option, the volume is your way of exchanging data (in this case, your input and output files) with the docker container.

.. code-block:: bash
docker run -v /Users/hadrien/data:/mnt/data -it --rm \
hadrieng/insilicoseq iss generate \
quay.io/biocontainers/insilicoseq:<tag> iss generate \
--genomes /mnt/data/genomes.fasta -m miseq \
-o /mnt/data/reads
Expand Down
2 changes: 1 addition & 1 deletion iss/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def generate_reads(args):
if readcount_dic is not None:
n_reads = sum(readcount_dic.values())
logger.info("Generating %s reads" % n_reads)
elif not (args.coverage or args.coverage_file):
else:
n_reads = util.convert_n_reads(args.n_reads)
logger.info("Generating %s reads" % n_reads)

Expand Down
1 change: 0 additions & 1 deletion iss/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,6 @@ def load_readcount_or_abundance(
abundance_dic = abundance.parse_abundance_file(coverage_file)
elif coverage in abundance_dispatch:
# todo coverage distribution with --draft
logger.warning("--coverage is an experimental feature")
logger.info("Using %s coverage distribution" % coverage)
if draft:
abundance_dic = abundance.draft(
Expand Down
2 changes: 1 addition & 1 deletion iss/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.6.0"
__version__ = "2.0.1"
Loading