-
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
5 changed files
with
19 additions
and
15 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
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,11 +5,11 @@ | |
import argparse | ||
from reademptionlib.controller import Controller | ||
|
||
__author__ = "Konrad Foerstner <[email protected]>" | ||
__copyright__ = "2011-2017 by Konrad Foerstner <[email protected]>" | ||
__author__ = "Konrad Foerstner <[email protected]>, Till Sauerwein <[email protected]>" | ||
__copyright__ = "2011-2019 by Konrad Foerstner <[email protected], , Till Sauerwein <[email protected]>" | ||
__license__ = "ISC license" | ||
__email__ = "[email protected]" | ||
__version__ = "0.4.5" | ||
__version__ = "0.5.0" | ||
|
||
|
||
def main(): | ||
|
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,17 +5,17 @@ | |
|
||
setup( | ||
name='READemption', | ||
version='0.4.5', | ||
version='0.5.0', | ||
packages=['reademptionlib', 'tests'], | ||
author='Konrad U. Förstner', | ||
author='Konrad U. Förstner, Till Sauerwein', | ||
author_email='[email protected]', | ||
description='A RNA-Seq Analysis Pipeline', | ||
url='', | ||
install_requires=[ | ||
"biopython >= 1.67", | ||
"matplotlib >= 1.5.1", | ||
"pandas >= 0.18.1", | ||
"pysam >= 0.9.1.4" | ||
"biopython >= 1.73", | ||
"matplotlib >= 2.2.2", | ||
"pandas >= 0.24.2", | ||
"pysam >= 0.15.2" | ||
], | ||
scripts=['bin/reademption'], | ||
license='ISC License (ISCL)', | ||
|