-
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
16 changed files
with
263 additions
and
66 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 |
---|---|---|
|
@@ -9,7 +9,7 @@ __author__ = "Konrad Foerstner <[email protected]>" | |
__copyright__ = "2011-2014 by Konrad Foerstner <[email protected]>" | ||
__license__ = "ISC license" | ||
__email__ = "[email protected]" | ||
__version__ = "0.3.0" | ||
__version__ = "0.3.1" | ||
|
||
def main(): | ||
parser = argparse.ArgumentParser() | ||
|
@@ -34,10 +34,11 @@ def main(): | |
"directory is used.") | ||
read_aligning_parser.add_argument( | ||
"--min_read_length", "-l", default=12, type=int, | ||
help="Minimal read length after clipping.") | ||
help="Minimal read length after clipping (default 12). Should be " | ||
"higher for eukaryotic species.") | ||
read_aligning_parser.add_argument( | ||
"--processes", "-p", default=1, type=int, | ||
help="Number of processes that should be used.") | ||
help="Number of processes that should be used (default 1).") | ||
read_aligning_parser.add_argument( | ||
"--segemehl_accuracy", "-a", default=95.0, type=float, | ||
help="Segemehl's minimal accuracy (in %%) (default 95).") | ||
|
@@ -71,6 +72,9 @@ def main(): | |
read_aligning_parser.add_argument( | ||
"--lack_bin", "-L", default="lack.x", | ||
help="Lack's binary path (default 'lack.x').") | ||
read_aligning_parser.add_argument( | ||
"--fastq", "-q", default=False, action="store_true", | ||
help="Input reads are in FASTQ not FASTA format.") | ||
read_aligning_parser.add_argument( | ||
"--check_for_existing_files", "-f", default=False, | ||
action="store_true", help="Check for existing files (e.g. from a " | ||
|
@@ -108,7 +112,7 @@ def main(): | |
"calculation.") | ||
coverage_creation_parser.add_argument( | ||
"--processes", "-p", default=1, type=int, | ||
help="Number of processes that should be used.") | ||
help="Number of processes that should be used (default 1).") | ||
coverage_creation_parser.add_argument( | ||
"--skip_read_count_splitting", "-s", default=False, | ||
action="store_true", help="Do not split the read counting between " | ||
|
@@ -151,7 +155,7 @@ def main(): | |
"and anti-sense overlaps are counted and separately reported.") | ||
gene_wise_quanti_parser.add_argument( | ||
"--processes", "-p", default=1, type=int, | ||
help="Number of processes that should be used.") | ||
help="Number of processes that should be used (default 1).") | ||
gene_wise_quanti_parser.add_argument( | ||
"--features", "-t", dest="allowed_features", default=None, | ||
help="Comma separated list of features that should be considered " | ||
|
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Live system and installation image | ||
================================== | ||
|
||
For users who do not feel comfortable with the installation of | ||
READemption, who want to run it under Windows or who just want to test | ||
it without installation we offer a Ubuntu 14.4 based live system / | ||
installation image (~ 1.2 GB large) which can be `downloaded here | ||
<http://osimages.imib-zinf.net>`_. Once you have retrieved the image | ||
you can either use it to install or test the system on a physical | ||
machine or use it in a virtual machine (e.g. using the open source | ||
software `VirtualBox <https://www.virtualbox.org/>`_). The required | ||
installation/setup steps are the `same as for the official Ubuntu | ||
version | ||
<http://www.ubuntu.com/download/desktop/install-ubuntu-desktop>`_. The | ||
only difference is that once you have a running system READemption can | ||
be used out of the box without any further setup. A very detailed | ||
description of the setup of a virtual machine with Ubuntu under | ||
Windows can be found `here | ||
<http://www.wikihow.com/Install-Ubuntu-on-VirtualBox>`_. |
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
Oops, something went wrong.