Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,17 @@ jobs:
environment-file: environment.yml
create-args: >-
python=${{ matrix.python }}
cache-environment: true
# environment caching is disabled on purpose: restored envs kept the
# package metadata but lost files on disk, so bcftools was reported as
# installed while libgsl.so.25 was missing at runtime
cache-environment: false
cache-downloads: true

- name: check bcftools
shell: bash -l {0}
run: |
bcftools --version

- name: install package itself
shell: bash -l {0}
run: |
Expand Down
7 changes: 3 additions & 4 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ Sequana variant calling pipeline documentation

|version|, |today|, status:production

The **variant_calling** pipeline is a `Sequana <https://github.com/sequana/sequana>`_ pipeline. You can find the source code
The **variant_calling** pipeline is a `Sequana <https://github.com/sequana/sequana>`_ pipeline. You can find the source code
on `https://github.com/sequana/sequana_variant_calling <https://github.com/sequana/sequana_variant_calling/>`_. Would you have issues
about the code, usage or lack of information, please fill a report
on `Sequana itself <https://github.com/sequana/sequana/issues>`_ indicating the pipeline name (We centralized all
about the code, usage or lack of information, please fill a report
on `Sequana itself <https://github.com/sequana/sequana/issues>`_ indicating the pipeline name (We centralized all
pipelines issues on **Sequana** repository only so as to be more responsive).

If you use **Sequana**, please do not forget to cite us:
Expand Down Expand Up @@ -38,4 +38,3 @@ What is Sequana ?
To join the project, please let us know on `github <https://github.com/sequana/sequana/issues/306>`_.

For more information, please see `github <https://sequana.readthedocs.io>`_.

1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ dependencies:
- freebayes>1.3
- bwa
- bcftools
- gsl
- snpeff==5.1d
- sambamba
- fastp
Expand Down
Loading