-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
79 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Copyright (c) 2011-2014, Konrad Förstner <[email protected]> | ||
Copyright (c) 2011-2015, Konrad Förstner <[email protected]> | ||
|
||
Permission to use, copy, modify, and/or distribute this software for | ||
any purpose with or without fee is hereby granted, provided that the | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,10 +6,10 @@ import argparse | |
from reademptionlib.controller import Controller | ||
|
||
__author__ = "Konrad Foerstner <[email protected]>" | ||
__copyright__ = "2011-2014 by Konrad Foerstner <[email protected]>" | ||
__copyright__ = "2011-2015 by Konrad Foerstner <[email protected]>" | ||
__license__ = "ISC license" | ||
__email__ = "[email protected]" | ||
__version__ = "0.3.5" | ||
__version__ = "0.3.6" | ||
|
||
def main(): | ||
parser = argparse.ArgumentParser() | ||
|
@@ -167,6 +167,10 @@ def main(): | |
"--skip_antisense", "-a", default=False, action="store_true", | ||
help="Do not count anti-sense read-gene-overlaps. By default sense " | ||
"and anti-sense overlaps are counted and separately reported.") | ||
gene_wise_quanti_parser.add_argument( | ||
"--non_strand_specific", default=False, action="store_true", | ||
help="Use countings of reads overlapping with a gene on both strands " | ||
"and sum them up.") | ||
gene_wise_quanti_parser.add_argument( | ||
"--processes", "-p", default=1, type=int, | ||
help="Number of processes that should be used (default 1).") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ License | |
|
||
READemption is open source software and available under the ISC license. | ||
|
||
Copyright (c) 2011-2014, Konrad Förstner <[email protected]> | ||
Copyright (c) 2011-2015, Konrad Förstner <[email protected]> | ||
|
||
Permission to use, copy, modify, and/or distribute this software for | ||
any purpose with or without fee is hereby granted, provided that the | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setup( | ||
name='READemption', | ||
version='0.3.5', | ||
version='0.3.6', | ||
packages=['reademptionlib', 'tests'], | ||
author='Konrad U. Förstner', | ||
author_email='[email protected]', | ||
|