Skip to content

Commit

Permalink
Merge pull request #724 from maxplanck-ie/dev_ksikora2
Browse files Browse the repository at this point in the history
Dev ksikora2
  • Loading branch information
katsikora committed Nov 16, 2020
2 parents d5de621 + a60d1b9 commit 788163a
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
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.3.1
version: 2.4.0

source:
path: ../
Expand Down
4 changes: 3 additions & 1 deletion docs/content/News.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
snakePipes News
===============

snakePipes x.y.z
snakePipes 2.4.0
----------------

* Added support for multiple pairwise comparisons for DESeq2, sleuth, and rMats in the mRNA-seq workflow, as well as for DESeq2 in the noncoding-RNA-seq workflow.
* Loompy from conda is now used in mode STARsolo in scRNA-seq workflow.
* Added bamExt to mRNA-seq and noncoding-RNA-seq commandline arguments.
* Added multi-thread support to rMats in mRNA-seq workflow.
* Fixed deepTools GC bias command with SE reads.
* Bumped HiC explorer version.
* Fixed STARsoloCoords for Custom kit.


snakePipes 2.3.1
Expand Down
2 changes: 1 addition & 1 deletion docs/content/setting_up.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The easiest way to install snakePipes is via our conda channel. The following co

.. code:: bash
conda create -n snakePipes -c mpi-ie -c conda-forge -c bioconda snakePipes==2.3.1
conda create -n snakePipes -c mpi-ie -c conda-forge -c bioconda snakePipes==2.4.0
This way, the software used within snakePipes do not conflict with the software pre-installed on your terminal or in your python environment.

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Quick start

.. code:: bash
conda create -n snakePipes -c mpi-ie -c conda-forge -c bioconda snakePipes==2.3.1
conda create -n snakePipes -c mpi-ie -c conda-forge -c bioconda snakePipes==2.4.0
* You can update snakePipes to the latest version available on conda with:

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.3.1'
__version__ = '2.4.0'
1 change: 1 addition & 0 deletions snakePipes/workflows/scRNAseq/internals.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ if mode == "STARsolo":
if not os.path.isfile(BCwhiteList):
print("Provided barcode whitelist file doesn't exist! Exit...\n")
exit(1)
STARsoloCoords = STARsoloCoords.split(',')

## After barcode transfer to R2 we have only single end data / R2
## but we need to keep "reads" for rule fastq_barcode
Expand Down
2 changes: 1 addition & 1 deletion snakePipes/workflows/scRNAseq/scRNAseq
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def parse_args(defaults={"verbose": False, "configFile": None,
default=defaults["BCwhiteList"])

optional.add_argument("--STARsoloCoords",
type=list,
type=str,
help="Comma-separated list of values: UMI start position, UMI length, CB start position, CB length. Required for the STARsolo mode (default: '%(default)s')",
default=defaults["STARsoloCoords"])

Expand Down

0 comments on commit 788163a

Please sign in to comment.