Skip to content

Commit

Permalink
Merge pull request #714 from maxplanck-ie/dev_ksikora2
Browse files Browse the repository at this point in the history
Misc
  • Loading branch information
katsikora committed Oct 22, 2020
2 parents 2e9b66f + a2ad4cc commit 1f8fe1f
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
6 changes: 6 additions & 0 deletions docs/content/News.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
snakePipes News
===============

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

* Loompy from conda is now used in mode STARsolo in scRNA-seq workflow.
* Added bamExt to mRNA-seq and noncoding-RNA-seq commandline arguments.

snakePipes 2.3.1
----------------

Expand Down
3 changes: 1 addition & 2 deletions snakePipes/shared/rules/envs/sc_rna_seq_loompy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ channels:
- bioconda
dependencies:
- python=3.8
- pip:
- loompy
- loompy=3.0.6
7 changes: 6 additions & 1 deletion snakePipes/workflows/mRNA-seq/mRNA-seq
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def parse_args(defaults={"verbose": False, "configFile": None,
"filterGTF": None, "sampleSheet": None,
"reads": ["_R1", "_R2"], "ext": ".fastq.gz",
"bwBinSize": 25, "dnaContam": False, "plotFormat": "png",
"fromBAM": False, "pairedEnd": True,
"fromBAM": False, "bamExt": ".bam", "pairedEnd": True,
"UMIDedup": False,
"UMIDedupOpts": "", "bcPattern": "NNNNCCCCCCCCC",
"UMIDedupSep": "_", "UMIBarcode": False, "rMats": False}):
Expand Down Expand Up @@ -103,6 +103,11 @@ def parse_args(defaults={"verbose": False, "configFile": None,
help="Input folder with bam files. If provided, the analysis will start from this point. If bam files contain single ends, please specify --singleEnd additionally.",
default=defaults["fromBAM"])

optional.add_argument("--bamExt",
help="Extention of provided bam files, will be substracted from basenames to obtain sample names. (default: '%(default)s')",
default=defaults["bamExt"])


optional.add_argument("--singleEnd",
dest="pairedEnd",
action="store_false",
Expand Down
7 changes: 6 additions & 1 deletion snakePipes/workflows/noncoding-RNA-seq/noncoding-RNA-seq
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def parse_args(defaults={"verbose": False, "configFile": None,
"sampleSheet": None,
"reads": ["_R1", "_R2"], "ext": ".fastq.gz",
"bwBinSize": 25, "plotFormat": "png",
"fromBAM": False, "pairedEnd": True,
"fromBAM": False, "bamExt": ".bam", "pairedEnd": True,
"UMIDedup": False,
"UMIDedupOpts": "", "bcPattern": "NNNNCCCCCCCCC",
"UMIDedupSep": "_", "UMIBarcode": False}):
Expand Down Expand Up @@ -76,6 +76,11 @@ def parse_args(defaults={"verbose": False, "configFile": None,
help="Input folder with bam files. If provided, the analysis will start from this point. If bam files contain single ends, please specify --singleEnd additionally.",
default=defaults["fromBAM"])

optional.add_argument("--bamExt",
help="Extention of provided bam files, will be substracted from basenames to obtain sample names. (default: '%(default)s')",
default=defaults["bamExt"])


optional.add_argument("--singleEnd",
dest="pairedEnd",
action="store_false",
Expand Down

0 comments on commit 1f8fe1f

Please sign in to comment.