-
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
12 changed files
with
94 additions
and
88 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-2013, Konrad Förstner <[email protected]> | ||
Copyright (c) 2011-2014, 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
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-2013 by Konrad Foerstner <[email protected]>" | ||
__copyright__ = "2011-2014 by Konrad Foerstner <[email protected]>" | ||
__license__ = "ISC license" | ||
__email__ = "[email protected]" | ||
__version__ = "0.2.2" | ||
__version__ = "0.2.3" | ||
|
||
def main(): | ||
parser = argparse.ArgumentParser() | ||
|
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 |
---|---|---|
|
@@ -16,25 +16,21 @@ Table of content | |
READemption in a nutshell | ||
========================= | ||
|
||
*READemption* is a pipeline for the computational evaluation of | ||
RNA-Seq data. It was originally developed at the `IMIB/ZINF | ||
<http://www.imib-wuerzburg.de/>`_ to process dRNA-Seq reads (as | ||
introduced by Sharma *et al.*, Nature, 2010 (`Pubmed | ||
READemption is a pipeline for the computational evaluation of | ||
RNA-Seq data. It was originally developed to process dRNA-Seq reads | ||
(as introduced by Sharma et al., Nature, 2010 (`Pubmed | ||
<http://www.ncbi.nlm.nih.gov/pubmed/20164839>`_)) originating from | ||
bacterial samples. Meanwhile is has been extended to process data | ||
generated in different experimental setups and originating from all | ||
domains of life and is under `active development | ||
<https://github.com/konrad/READemption>`_. The `subcommands | ||
<subcommands.html>`_ which are provided by command-line interface | ||
cover read processing and aligning, coverage plot generation, gene | ||
expression quantification as well as differential gene expression | ||
analysis. READemption was applied to analyze numerous data sets. In order to | ||
set up analyses quickly READemption follows the principal of *convention | ||
over configuration*: Once the input files are copied into defined | ||
folders no further parameters have to be given. Still, READemption's | ||
behavior can be adapted to specific needs of the user. This tools is | ||
available as open source under open source license `ICSL | ||
<https://en.wikipedia.org/wiki/ISC_license>`_. | ||
generated in different experimental setups and from all domains of | ||
life. The `functions <subcommands.html>`_ which are accessible via a | ||
command-line interface cover read processing and aligning, coverage | ||
calculation, gene expression quantification, differential gene | ||
expression analysis as well as visualization. In order to set up and | ||
perform analyses quickly READemption follows the principal of | ||
*convention over configuration*: Once the input files are | ||
copied/linked into defined folders no further parameters have to be | ||
given. Still, READemption's behavior can be adapted to specific needs | ||
of the user by parameters. | ||
|
||
Download | ||
======== | ||
|
@@ -63,4 +59,5 @@ Konrad U. Förstner, Jörg Vogel, Cynthia M. Sharma; (submitted). | |
Contact | ||
======= | ||
|
||
For question and requests feel free to contact Konrad Förstner <[email protected]> | ||
For question and requests feel free to contact `Konrad Förstner | ||
<http://konrad.foerstner.org/>`_ <[email protected]> |
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,17 +5,17 @@ | |
|
||
setup( | ||
name='READemption', | ||
version='0.2.2', | ||
version='0.2.3', | ||
packages=['reademptionlib', 'tests'], | ||
author='Konrad U. Förstner', | ||
author_email='[email protected]', | ||
description='READemption - A RNA-Seq Analysis Pipeline', | ||
description='A RNA-Seq Analysis Pipeline', | ||
url='', | ||
install_requires=[ | ||
"pysam >= 0.7.7" | ||
], | ||
scripts=['bin/reademption'], | ||
license='LICENSE.txt', | ||
license='ISC License (ISCL)', | ||
long_description=open('README.rst').read(), | ||
classifiers=[ | ||
'License :: OSI Approved :: ISC License (ISCL)', | ||
|