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

bumped versions and docs #1004

Merged
merged 1 commit into from
Apr 10, 2024
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
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: snakepipes
version: 2.8.1
version: 2.8.2

source:
path: ../
Expand Down
8 changes: 5 additions & 3 deletions docs/content/News.rst
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
snakePipes News
===============

snakePipes x.y.z
snakePipes 2.8.2
________________

* added SEACR peaks qc
* added external bed functionality for differential binding in ChIP-seq and ATAC-seq workflows
* added "allelic-counting" mode to mRNA-seq, allowing to count reads and run DGE from allelic bam files split e.g. by whatshap
* added support for custom model formula to mRNA-seq workflow
* fixed copyfile command for sampleSheet
* removed deprecated --force argument from mamba commands
* fixes #998
* fixes #997
* fixes #996


* fixes #994
* fixes #1000
* fixes #1001

snakePipes 2.8.1
----------------
Expand Down
3 changes: 3 additions & 0 deletions docs/content/workflows/mRNA-seq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ Like the other workflows, differential expression can be performed using the ``-

.. note:: The first entry defines which group of samples are control. This way, the order of comparison and likewise the sign of values can be changed. The DE analysis might fail if your sample names begin with a number. So watch out for that!


Optionally, the user may submit their desired model formula (without the leading tilda ``~``) with ``--formula``.

Differential Splicing
---------------------

Expand Down
2 changes: 1 addition & 1 deletion snakePipes/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.8.1'
__version__ = '2.8.2'
2 changes: 1 addition & 1 deletion snakePipes/shared/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# permitted here.
################################################################################
#
condaEnvDir: '/package/mamba/envs/snakepipesenvs/2.8.1'
condaEnvDir: '/package/mamba/envs/snakepipesenvs/2.8.2'
snakemakeOptions: ''
organismsDir: 'shared/organisms'
clusterConfig: 'shared/cluster.yaml'
Expand Down
Loading