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

feat: Pyroe make-spliced+intronic #1288

Merged
merged 49 commits into from Apr 28, 2023
Merged

Conversation

tdayris
Copy link
Contributor

@tdayris tdayris commented Apr 21, 2023

Description

This PR add pyroe make-splice+intronic fasta for salmon alevin-fry indexing.

QC

  • I confirm that:

For all wrappers added by this PR,

  • there is a test case which covers any introduced changes,
  • input: and output: file paths in the resulting rule can be changed arbitrarily,
  • either the wrapper can only use a single core, or the example rule contains a threads: x statement with x being a reasonable default,
  • rule names in the test case are in snake_case and somehow tell what the rule is about or match the tools purpose or name (e.g., map_reads for a step that maps reads),
  • all environment.yaml specifications follow the respective best practices,
  • wherever possible, command line arguments are inferred and set automatically (e.g. based on file extensions in input: or output:),
  • all fields of the example rules in the Snakefiles and their entries are explained via comments (input:/output:/params: etc.),
  • stderr and/or stdout are logged correctly (log:), depending on the wrapped tool,
  • temporary files are either written to a unique hidden folder in the working directory, or (better) stored where the Python function tempfile.gettempdir() points to (see here; this also means that using any Python tempfile default behavior works),
  • the meta.yaml contains a link to the documentation of the respective tool or command,
  • Snakefiles pass the linting (snakemake --lint),
  • Snakefiles are formatted with snakefmt,
  • Python wrapper scripts are formatted with black.
  • Conda environments use a minimal amount of channels, in recommended ordering. E.g. for bioconda, use (conda-forge, bioconda, nodefaults, as conda-forge should have highest priority and defaults channels are usually not needed because most packages are in conda-forge nowadays).

tdayris and others added 30 commits September 21, 2020 09:16
* perf: update bio/bcftools/index/environment.yaml.

* perf: update bio/bcftools/index/environment.yaml.

* perf: update bio/bcftools/index/environment.yaml.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
* Add autobump action

* fix paths

* dbg

* dbg branch

* add checkout

* dbg

* trigger rerun

* entity regex and add label

* dbg

* Update autobump.yml

* Update autobump.yml
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
github-actions bot and others added 18 commits October 13, 2022 14:25
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Automatic update of bio/deepvariant.

Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: Johannes Köster <johannes.koester@uni-due.de>
<!-- Ensure that the PR title follows conventional commit style (<type>:
<description>)-->
<!-- Possible types are here:
https://github.com/commitizen/conventional-commit-types/blob/master/index.json
-->

### Description

<!-- Add a description of your PR here-->

### QC
<!-- Make sure that you can tick the boxes below. -->

* [x] I confirm that:

For all wrappers added by this PR, 

* there is a test case which covers any introduced changes,
* `input:` and `output:` file paths in the resulting rule can be changed
arbitrarily,
* either the wrapper can only use a single core, or the example rule
contains a `threads: x` statement with `x` being a reasonable default,
* rule names in the test case are in
[snake_case](https://en.wikipedia.org/wiki/Snake_case) and somehow tell
what the rule is about or match the tools purpose or name (e.g.,
`map_reads` for a step that maps reads),
* all `environment.yaml` specifications follow [the respective best
practices](https://stackoverflow.com/a/64594513/2352071),
* wherever possible, command line arguments are inferred and set
automatically (e.g. based on file extensions in `input:` or `output:`),
* all fields of the example rules in the `Snakefile`s and their entries
are explained via comments (`input:`/`output:`/`params:` etc.),
* `stderr` and/or `stdout` are logged correctly (`log:`), depending on
the wrapped tool,
* temporary files are either written to a unique hidden folder in the
working directory, or (better) stored where the Python function
`tempfile.gettempdir()` points to (see
[here](https://docs.python.org/3/library/tempfile.html#tempfile.gettempdir);
this also means that using any Python `tempfile` default behavior
works),
* the `meta.yaml` contains a link to the documentation of the respective
tool or command,
* `Snakefile`s pass the linting (`snakemake --lint`),
* `Snakefile`s are formatted with
[snakefmt](https://github.com/snakemake/snakefmt),
* Python wrapper scripts are formatted with
[black](https://black.readthedocs.io).
* Conda environments use a minimal amount of channels, in recommended
ordering. E.g. for bioconda, use (conda-forge, bioconda, nodefaults, as
conda-forge should have highest priority and defaults channels are
usually not needed because most packages are in conda-forge nowadays).
@tdayris tdayris changed the title Pyroe faet: Pyroe make-spliced+intronic Apr 21, 2023
@tdayris tdayris changed the title faet: Pyroe make-spliced+intronic feat: Pyroe make-spliced+intronic Apr 21, 2023
@johanneskoester johanneskoester merged commit 352d6f3 into snakemake:master Apr 28, 2023
6 checks passed
johanneskoester pushed a commit that referenced this pull request Apr 28, 2023
🤖 I have created a release \*beep\* \*boop\*
---
##
[1.28.0](https://www.github.com/snakemake/snakemake-wrappers/compare/v1.27.0...v1.28.0)
(2023-04-28)


### Features

* Pyroe make-spliced+intronic
([#1288](https://www.github.com/snakemake/snakemake-wrappers/issues/1288))
([352d6f3](https://www.github.com/snakemake/snakemake-wrappers/commit/352d6f38218fba384e2ab93076966245a7494bc0))


### Performance Improvements

* autobump bio/bbtools/loglog
([#1304](https://www.github.com/snakemake/snakemake-wrappers/issues/1304))
([9316253](https://www.github.com/snakemake/snakemake-wrappers/commit/93162531beede4dd06096630c4c1199022792ea5))
* autobump bio/bismark/bismark
([#1303](https://www.github.com/snakemake/snakemake-wrappers/issues/1303))
([fa68ba8](https://www.github.com/snakemake/snakemake-wrappers/commit/fa68ba87f07eb5eb8499c16cc3a6f9888ced7bf0))
* autobump bio/fgbio/annotatebamwithumis
([#1312](https://www.github.com/snakemake/snakemake-wrappers/issues/1312))
([13cb583](https://www.github.com/snakemake/snakemake-wrappers/commit/13cb583b4245d88127e13b6248fac76eddada186))
* autobump bio/gatk/intervallisttobed
([#1305](https://www.github.com/snakemake/snakemake-wrappers/issues/1305))
([d895b8f](https://www.github.com/snakemake/snakemake-wrappers/commit/d895b8fa7a73083175f51f1c4a46505d42eab22e))
* autobump bio/minimap2/index
([#1308](https://www.github.com/snakemake/snakemake-wrappers/issues/1308))
([a578d2f](https://www.github.com/snakemake/snakemake-wrappers/commit/a578d2f4bb66cfd0a862e0ea6dfa5e099aace832))
* autobump bio/paladin/prepare
([#1299](https://www.github.com/snakemake/snakemake-wrappers/issues/1299))
([1e27b4c](https://www.github.com/snakemake/snakemake-wrappers/commit/1e27b4cef31a985dace89b17cb04d8395a211e0e))
* autobump bio/picard/mergevcfs
([#1307](https://www.github.com/snakemake/snakemake-wrappers/issues/1307))
([7a8a8aa](https://www.github.com/snakemake/snakemake-wrappers/commit/7a8a8aa893fcd0b5be78c3576e7e25335e010492))
* autobump bio/qualimap/rnaseq
([#1306](https://www.github.com/snakemake/snakemake-wrappers/issues/1306))
([0ba2d3e](https://www.github.com/snakemake/snakemake-wrappers/commit/0ba2d3ec80362179223149bf06d97e3f0b35bc84))
* autobump bio/samtools/merge
([#1300](https://www.github.com/snakemake/snakemake-wrappers/issues/1300))
([69332cd](https://www.github.com/snakemake/snakemake-wrappers/commit/69332cd327df12de1935f9c5e1e993f5c33900f4))
* autobump bio/samtools/mpileup
([#1310](https://www.github.com/snakemake/snakemake-wrappers/issues/1310))
([f72ccf0](https://www.github.com/snakemake/snakemake-wrappers/commit/f72ccf0b3ef51a8ceeda5474367902781103edc1))
* autobump bio/seqkit/grep
([#1301](https://www.github.com/snakemake/snakemake-wrappers/issues/1301))
([dfa1f4d](https://www.github.com/snakemake/snakemake-wrappers/commit/dfa1f4d2ddbe03295c8c4eb9e888e15995333b4c))
* autobump bio/snpsift/dbnsfp
([#1309](https://www.github.com/snakemake/snakemake-wrappers/issues/1309))
([007437e](https://www.github.com/snakemake/snakemake-wrappers/commit/007437e877d48a091e3da77c1abbb152f0987e37))
* autobump bio/vembrane/filter
([#1311](https://www.github.com/snakemake/snakemake-wrappers/issues/1311))
([15dc129](https://www.github.com/snakemake/snakemake-wrappers/commit/15dc12911e108fca225ff1a049b7dcb0115385dd))
* update datavzrd to 2.18.5
([#1313](https://www.github.com/snakemake/snakemake-wrappers/issues/1313))
([0089e88](https://www.github.com/snakemake/snakemake-wrappers/commit/0089e8825eb6b962be66da9a0964bd658b9b96fc))
---


This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
tgroth97 pushed a commit to tgroth97/snakemake-wrappers that referenced this pull request May 3, 2023
<!-- Ensure that the PR title follows conventional commit style (<type>:
<description>)-->
<!-- Possible types are here:
https://github.com/commitizen/conventional-commit-types/blob/master/index.json
-->

### Description

This PR add pyroe make-splice+intronic fasta for salmon alevin-fry
indexing.

### QC
<!-- Make sure that you can tick the boxes below. -->

* [X] I confirm that:

For all wrappers added by this PR, 

* there is a test case which covers any introduced changes,
* `input:` and `output:` file paths in the resulting rule can be changed
arbitrarily,
* either the wrapper can only use a single core, or the example rule
contains a `threads: x` statement with `x` being a reasonable default,
* rule names in the test case are in
[snake_case](https://en.wikipedia.org/wiki/Snake_case) and somehow tell
what the rule is about or match the tools purpose or name (e.g.,
`map_reads` for a step that maps reads),
* all `environment.yaml` specifications follow [the respective best
practices](https://stackoverflow.com/a/64594513/2352071),
* wherever possible, command line arguments are inferred and set
automatically (e.g. based on file extensions in `input:` or `output:`),
* all fields of the example rules in the `Snakefile`s and their entries
are explained via comments (`input:`/`output:`/`params:` etc.),
* `stderr` and/or `stdout` are logged correctly (`log:`), depending on
the wrapped tool,
* temporary files are either written to a unique hidden folder in the
working directory, or (better) stored where the Python function
`tempfile.gettempdir()` points to (see
[here](https://docs.python.org/3/library/tempfile.html#tempfile.gettempdir);
this also means that using any Python `tempfile` default behavior
works),
* the `meta.yaml` contains a link to the documentation of the respective
tool or command,
* `Snakefile`s pass the linting (`snakemake --lint`),
* `Snakefile`s are formatted with
[snakefmt](https://github.com/snakemake/snakefmt),
* Python wrapper scripts are formatted with
[black](https://black.readthedocs.io).
* Conda environments use a minimal amount of channels, in recommended
ordering. E.g. for bioconda, use (conda-forge, bioconda, nodefaults, as
conda-forge should have highest priority and defaults channels are
usually not needed because most packages are in conda-forge nowadays).

---------

Co-authored-by: tdayris <tdayris@gustaveroussy.fr>
Co-authored-by: tdayris <thibault.dayris@gustaveroussy.fr>
Co-authored-by: Johannes Köster <johannes.koester@uni-due.de>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: Felix Mölder <felix.moelder@uni-due.de>
Co-authored-by: Christopher Schröder <christopher.schroeder@tu-dortmund.de>
tgroth97 pushed a commit to tgroth97/snakemake-wrappers that referenced this pull request May 3, 2023
🤖 I have created a release \*beep\* \*boop\*
---
##
[1.28.0](https://www.github.com/snakemake/snakemake-wrappers/compare/v1.27.0...v1.28.0)
(2023-04-28)


### Features

* Pyroe make-spliced+intronic
([snakemake#1288](https://www.github.com/snakemake/snakemake-wrappers/issues/1288))
([352d6f3](https://www.github.com/snakemake/snakemake-wrappers/commit/352d6f38218fba384e2ab93076966245a7494bc0))


### Performance Improvements

* autobump bio/bbtools/loglog
([snakemake#1304](https://www.github.com/snakemake/snakemake-wrappers/issues/1304))
([9316253](https://www.github.com/snakemake/snakemake-wrappers/commit/93162531beede4dd06096630c4c1199022792ea5))
* autobump bio/bismark/bismark
([snakemake#1303](https://www.github.com/snakemake/snakemake-wrappers/issues/1303))
([fa68ba8](https://www.github.com/snakemake/snakemake-wrappers/commit/fa68ba87f07eb5eb8499c16cc3a6f9888ced7bf0))
* autobump bio/fgbio/annotatebamwithumis
([snakemake#1312](https://www.github.com/snakemake/snakemake-wrappers/issues/1312))
([13cb583](https://www.github.com/snakemake/snakemake-wrappers/commit/13cb583b4245d88127e13b6248fac76eddada186))
* autobump bio/gatk/intervallisttobed
([snakemake#1305](https://www.github.com/snakemake/snakemake-wrappers/issues/1305))
([d895b8f](https://www.github.com/snakemake/snakemake-wrappers/commit/d895b8fa7a73083175f51f1c4a46505d42eab22e))
* autobump bio/minimap2/index
([snakemake#1308](https://www.github.com/snakemake/snakemake-wrappers/issues/1308))
([a578d2f](https://www.github.com/snakemake/snakemake-wrappers/commit/a578d2f4bb66cfd0a862e0ea6dfa5e099aace832))
* autobump bio/paladin/prepare
([snakemake#1299](https://www.github.com/snakemake/snakemake-wrappers/issues/1299))
([1e27b4c](https://www.github.com/snakemake/snakemake-wrappers/commit/1e27b4cef31a985dace89b17cb04d8395a211e0e))
* autobump bio/picard/mergevcfs
([snakemake#1307](https://www.github.com/snakemake/snakemake-wrappers/issues/1307))
([7a8a8aa](https://www.github.com/snakemake/snakemake-wrappers/commit/7a8a8aa893fcd0b5be78c3576e7e25335e010492))
* autobump bio/qualimap/rnaseq
([snakemake#1306](https://www.github.com/snakemake/snakemake-wrappers/issues/1306))
([0ba2d3e](https://www.github.com/snakemake/snakemake-wrappers/commit/0ba2d3ec80362179223149bf06d97e3f0b35bc84))
* autobump bio/samtools/merge
([snakemake#1300](https://www.github.com/snakemake/snakemake-wrappers/issues/1300))
([69332cd](https://www.github.com/snakemake/snakemake-wrappers/commit/69332cd327df12de1935f9c5e1e993f5c33900f4))
* autobump bio/samtools/mpileup
([snakemake#1310](https://www.github.com/snakemake/snakemake-wrappers/issues/1310))
([f72ccf0](https://www.github.com/snakemake/snakemake-wrappers/commit/f72ccf0b3ef51a8ceeda5474367902781103edc1))
* autobump bio/seqkit/grep
([snakemake#1301](https://www.github.com/snakemake/snakemake-wrappers/issues/1301))
([dfa1f4d](https://www.github.com/snakemake/snakemake-wrappers/commit/dfa1f4d2ddbe03295c8c4eb9e888e15995333b4c))
* autobump bio/snpsift/dbnsfp
([snakemake#1309](https://www.github.com/snakemake/snakemake-wrappers/issues/1309))
([007437e](https://www.github.com/snakemake/snakemake-wrappers/commit/007437e877d48a091e3da77c1abbb152f0987e37))
* autobump bio/vembrane/filter
([snakemake#1311](https://www.github.com/snakemake/snakemake-wrappers/issues/1311))
([15dc129](https://www.github.com/snakemake/snakemake-wrappers/commit/15dc12911e108fca225ff1a049b7dcb0115385dd))
* update datavzrd to 2.18.5
([snakemake#1313](https://www.github.com/snakemake/snakemake-wrappers/issues/1313))
([0089e88](https://www.github.com/snakemake/snakemake-wrappers/commit/0089e8825eb6b962be66da9a0964bd658b9b96fc))
---


This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
tdayris added a commit to tdayris/snakemake-wrappers that referenced this pull request May 11, 2023
<!-- Ensure that the PR title follows conventional commit style (<type>:
<description>)-->
<!-- Possible types are here:
https://github.com/commitizen/conventional-commit-types/blob/master/index.json
-->

### Description

This PR add pyroe make-splice+intronic fasta for salmon alevin-fry
indexing.

### QC
<!-- Make sure that you can tick the boxes below. -->

* [X] I confirm that:

For all wrappers added by this PR, 

* there is a test case which covers any introduced changes,
* `input:` and `output:` file paths in the resulting rule can be changed
arbitrarily,
* either the wrapper can only use a single core, or the example rule
contains a `threads: x` statement with `x` being a reasonable default,
* rule names in the test case are in
[snake_case](https://en.wikipedia.org/wiki/Snake_case) and somehow tell
what the rule is about or match the tools purpose or name (e.g.,
`map_reads` for a step that maps reads),
* all `environment.yaml` specifications follow [the respective best
practices](https://stackoverflow.com/a/64594513/2352071),
* wherever possible, command line arguments are inferred and set
automatically (e.g. based on file extensions in `input:` or `output:`),
* all fields of the example rules in the `Snakefile`s and their entries
are explained via comments (`input:`/`output:`/`params:` etc.),
* `stderr` and/or `stdout` are logged correctly (`log:`), depending on
the wrapped tool,
* temporary files are either written to a unique hidden folder in the
working directory, or (better) stored where the Python function
`tempfile.gettempdir()` points to (see
[here](https://docs.python.org/3/library/tempfile.html#tempfile.gettempdir);
this also means that using any Python `tempfile` default behavior
works),
* the `meta.yaml` contains a link to the documentation of the respective
tool or command,
* `Snakefile`s pass the linting (`snakemake --lint`),
* `Snakefile`s are formatted with
[snakefmt](https://github.com/snakemake/snakefmt),
* Python wrapper scripts are formatted with
[black](https://black.readthedocs.io).
* Conda environments use a minimal amount of channels, in recommended
ordering. E.g. for bioconda, use (conda-forge, bioconda, nodefaults, as
conda-forge should have highest priority and defaults channels are
usually not needed because most packages are in conda-forge nowadays).

---------

Co-authored-by: tdayris <tdayris@gustaveroussy.fr>
Co-authored-by: tdayris <thibault.dayris@gustaveroussy.fr>
Co-authored-by: Johannes Köster <johannes.koester@uni-due.de>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: Felix Mölder <felix.moelder@uni-due.de>
Co-authored-by: Christopher Schröder <christopher.schroeder@tu-dortmund.de>
tdayris pushed a commit to tdayris/snakemake-wrappers that referenced this pull request May 11, 2023
🤖 I have created a release \*beep\* \*boop\*
---
##
[1.28.0](https://www.github.com/snakemake/snakemake-wrappers/compare/v1.27.0...v1.28.0)
(2023-04-28)


### Features

* Pyroe make-spliced+intronic
([snakemake#1288](https://www.github.com/snakemake/snakemake-wrappers/issues/1288))
([352d6f3](https://www.github.com/snakemake/snakemake-wrappers/commit/352d6f38218fba384e2ab93076966245a7494bc0))


### Performance Improvements

* autobump bio/bbtools/loglog
([snakemake#1304](https://www.github.com/snakemake/snakemake-wrappers/issues/1304))
([9316253](https://www.github.com/snakemake/snakemake-wrappers/commit/93162531beede4dd06096630c4c1199022792ea5))
* autobump bio/bismark/bismark
([snakemake#1303](https://www.github.com/snakemake/snakemake-wrappers/issues/1303))
([fa68ba8](https://www.github.com/snakemake/snakemake-wrappers/commit/fa68ba87f07eb5eb8499c16cc3a6f9888ced7bf0))
* autobump bio/fgbio/annotatebamwithumis
([snakemake#1312](https://www.github.com/snakemake/snakemake-wrappers/issues/1312))
([13cb583](https://www.github.com/snakemake/snakemake-wrappers/commit/13cb583b4245d88127e13b6248fac76eddada186))
* autobump bio/gatk/intervallisttobed
([snakemake#1305](https://www.github.com/snakemake/snakemake-wrappers/issues/1305))
([d895b8f](https://www.github.com/snakemake/snakemake-wrappers/commit/d895b8fa7a73083175f51f1c4a46505d42eab22e))
* autobump bio/minimap2/index
([snakemake#1308](https://www.github.com/snakemake/snakemake-wrappers/issues/1308))
([a578d2f](https://www.github.com/snakemake/snakemake-wrappers/commit/a578d2f4bb66cfd0a862e0ea6dfa5e099aace832))
* autobump bio/paladin/prepare
([snakemake#1299](https://www.github.com/snakemake/snakemake-wrappers/issues/1299))
([1e27b4c](https://www.github.com/snakemake/snakemake-wrappers/commit/1e27b4cef31a985dace89b17cb04d8395a211e0e))
* autobump bio/picard/mergevcfs
([snakemake#1307](https://www.github.com/snakemake/snakemake-wrappers/issues/1307))
([7a8a8aa](https://www.github.com/snakemake/snakemake-wrappers/commit/7a8a8aa893fcd0b5be78c3576e7e25335e010492))
* autobump bio/qualimap/rnaseq
([snakemake#1306](https://www.github.com/snakemake/snakemake-wrappers/issues/1306))
([0ba2d3e](https://www.github.com/snakemake/snakemake-wrappers/commit/0ba2d3ec80362179223149bf06d97e3f0b35bc84))
* autobump bio/samtools/merge
([snakemake#1300](https://www.github.com/snakemake/snakemake-wrappers/issues/1300))
([69332cd](https://www.github.com/snakemake/snakemake-wrappers/commit/69332cd327df12de1935f9c5e1e993f5c33900f4))
* autobump bio/samtools/mpileup
([snakemake#1310](https://www.github.com/snakemake/snakemake-wrappers/issues/1310))
([f72ccf0](https://www.github.com/snakemake/snakemake-wrappers/commit/f72ccf0b3ef51a8ceeda5474367902781103edc1))
* autobump bio/seqkit/grep
([snakemake#1301](https://www.github.com/snakemake/snakemake-wrappers/issues/1301))
([dfa1f4d](https://www.github.com/snakemake/snakemake-wrappers/commit/dfa1f4d2ddbe03295c8c4eb9e888e15995333b4c))
* autobump bio/snpsift/dbnsfp
([snakemake#1309](https://www.github.com/snakemake/snakemake-wrappers/issues/1309))
([007437e](https://www.github.com/snakemake/snakemake-wrappers/commit/007437e877d48a091e3da77c1abbb152f0987e37))
* autobump bio/vembrane/filter
([snakemake#1311](https://www.github.com/snakemake/snakemake-wrappers/issues/1311))
([15dc129](https://www.github.com/snakemake/snakemake-wrappers/commit/15dc12911e108fca225ff1a049b7dcb0115385dd))
* update datavzrd to 2.18.5
([snakemake#1313](https://www.github.com/snakemake/snakemake-wrappers/issues/1313))
([0089e88](https://www.github.com/snakemake/snakemake-wrappers/commit/0089e8825eb6b962be66da9a0964bd658b9b96fc))
---


This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
tdayris added a commit to tdayris/snakemake-wrappers that referenced this pull request Jul 5, 2023
<!-- Ensure that the PR title follows conventional commit style (<type>:
<description>)-->
<!-- Possible types are here:
https://github.com/commitizen/conventional-commit-types/blob/master/index.json
-->

### Description

This PR add pyroe make-splice+intronic fasta for salmon alevin-fry
indexing.

### QC
<!-- Make sure that you can tick the boxes below. -->

* [X] I confirm that:

For all wrappers added by this PR, 

* there is a test case which covers any introduced changes,
* `input:` and `output:` file paths in the resulting rule can be changed
arbitrarily,
* either the wrapper can only use a single core, or the example rule
contains a `threads: x` statement with `x` being a reasonable default,
* rule names in the test case are in
[snake_case](https://en.wikipedia.org/wiki/Snake_case) and somehow tell
what the rule is about or match the tools purpose or name (e.g.,
`map_reads` for a step that maps reads),
* all `environment.yaml` specifications follow [the respective best
practices](https://stackoverflow.com/a/64594513/2352071),
* wherever possible, command line arguments are inferred and set
automatically (e.g. based on file extensions in `input:` or `output:`),
* all fields of the example rules in the `Snakefile`s and their entries
are explained via comments (`input:`/`output:`/`params:` etc.),
* `stderr` and/or `stdout` are logged correctly (`log:`), depending on
the wrapped tool,
* temporary files are either written to a unique hidden folder in the
working directory, or (better) stored where the Python function
`tempfile.gettempdir()` points to (see
[here](https://docs.python.org/3/library/tempfile.html#tempfile.gettempdir);
this also means that using any Python `tempfile` default behavior
works),
* the `meta.yaml` contains a link to the documentation of the respective
tool or command,
* `Snakefile`s pass the linting (`snakemake --lint`),
* `Snakefile`s are formatted with
[snakefmt](https://github.com/snakemake/snakefmt),
* Python wrapper scripts are formatted with
[black](https://black.readthedocs.io).
* Conda environments use a minimal amount of channels, in recommended
ordering. E.g. for bioconda, use (conda-forge, bioconda, nodefaults, as
conda-forge should have highest priority and defaults channels are
usually not needed because most packages are in conda-forge nowadays).

---------

Co-authored-by: tdayris <tdayris@gustaveroussy.fr>
Co-authored-by: tdayris <thibault.dayris@gustaveroussy.fr>
Co-authored-by: Johannes Köster <johannes.koester@uni-due.de>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: Felix Mölder <felix.moelder@uni-due.de>
Co-authored-by: Christopher Schröder <christopher.schroeder@tu-dortmund.de>
tdayris pushed a commit to tdayris/snakemake-wrappers that referenced this pull request Jul 5, 2023
🤖 I have created a release \*beep\* \*boop\*
---
##
[1.28.0](https://www.github.com/snakemake/snakemake-wrappers/compare/v1.27.0...v1.28.0)
(2023-04-28)


### Features

* Pyroe make-spliced+intronic
([snakemake#1288](https://www.github.com/snakemake/snakemake-wrappers/issues/1288))
([352d6f3](https://www.github.com/snakemake/snakemake-wrappers/commit/352d6f38218fba384e2ab93076966245a7494bc0))


### Performance Improvements

* autobump bio/bbtools/loglog
([snakemake#1304](https://www.github.com/snakemake/snakemake-wrappers/issues/1304))
([9316253](https://www.github.com/snakemake/snakemake-wrappers/commit/93162531beede4dd06096630c4c1199022792ea5))
* autobump bio/bismark/bismark
([snakemake#1303](https://www.github.com/snakemake/snakemake-wrappers/issues/1303))
([fa68ba8](https://www.github.com/snakemake/snakemake-wrappers/commit/fa68ba87f07eb5eb8499c16cc3a6f9888ced7bf0))
* autobump bio/fgbio/annotatebamwithumis
([snakemake#1312](https://www.github.com/snakemake/snakemake-wrappers/issues/1312))
([13cb583](https://www.github.com/snakemake/snakemake-wrappers/commit/13cb583b4245d88127e13b6248fac76eddada186))
* autobump bio/gatk/intervallisttobed
([snakemake#1305](https://www.github.com/snakemake/snakemake-wrappers/issues/1305))
([d895b8f](https://www.github.com/snakemake/snakemake-wrappers/commit/d895b8fa7a73083175f51f1c4a46505d42eab22e))
* autobump bio/minimap2/index
([snakemake#1308](https://www.github.com/snakemake/snakemake-wrappers/issues/1308))
([a578d2f](https://www.github.com/snakemake/snakemake-wrappers/commit/a578d2f4bb66cfd0a862e0ea6dfa5e099aace832))
* autobump bio/paladin/prepare
([snakemake#1299](https://www.github.com/snakemake/snakemake-wrappers/issues/1299))
([1e27b4c](https://www.github.com/snakemake/snakemake-wrappers/commit/1e27b4cef31a985dace89b17cb04d8395a211e0e))
* autobump bio/picard/mergevcfs
([snakemake#1307](https://www.github.com/snakemake/snakemake-wrappers/issues/1307))
([7a8a8aa](https://www.github.com/snakemake/snakemake-wrappers/commit/7a8a8aa893fcd0b5be78c3576e7e25335e010492))
* autobump bio/qualimap/rnaseq
([snakemake#1306](https://www.github.com/snakemake/snakemake-wrappers/issues/1306))
([0ba2d3e](https://www.github.com/snakemake/snakemake-wrappers/commit/0ba2d3ec80362179223149bf06d97e3f0b35bc84))
* autobump bio/samtools/merge
([snakemake#1300](https://www.github.com/snakemake/snakemake-wrappers/issues/1300))
([69332cd](https://www.github.com/snakemake/snakemake-wrappers/commit/69332cd327df12de1935f9c5e1e993f5c33900f4))
* autobump bio/samtools/mpileup
([snakemake#1310](https://www.github.com/snakemake/snakemake-wrappers/issues/1310))
([f72ccf0](https://www.github.com/snakemake/snakemake-wrappers/commit/f72ccf0b3ef51a8ceeda5474367902781103edc1))
* autobump bio/seqkit/grep
([snakemake#1301](https://www.github.com/snakemake/snakemake-wrappers/issues/1301))
([dfa1f4d](https://www.github.com/snakemake/snakemake-wrappers/commit/dfa1f4d2ddbe03295c8c4eb9e888e15995333b4c))
* autobump bio/snpsift/dbnsfp
([snakemake#1309](https://www.github.com/snakemake/snakemake-wrappers/issues/1309))
([007437e](https://www.github.com/snakemake/snakemake-wrappers/commit/007437e877d48a091e3da77c1abbb152f0987e37))
* autobump bio/vembrane/filter
([snakemake#1311](https://www.github.com/snakemake/snakemake-wrappers/issues/1311))
([15dc129](https://www.github.com/snakemake/snakemake-wrappers/commit/15dc12911e108fca225ff1a049b7dcb0115385dd))
* update datavzrd to 2.18.5
([snakemake#1313](https://www.github.com/snakemake/snakemake-wrappers/issues/1313))
([0089e88](https://www.github.com/snakemake/snakemake-wrappers/commit/0089e8825eb6b962be66da9a0964bd658b9b96fc))
---


This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants