-
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
15 changed files
with
297 additions
and
204 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.4" | ||
__version__ = "0.3.5" | ||
|
||
def main(): | ||
parser = argparse.ArgumentParser() | ||
|
@@ -126,6 +126,11 @@ def main(): | |
"--skip_read_count_splitting", "-s", default=False, | ||
action="store_true", help="Do not split the read counting between " | ||
"different alignings. Default is to do the splitting.") | ||
coverage_creation_parser.add_argument( | ||
"--non_strand_specific", "-d", default=False, | ||
action="store_true", help="Do not distict between the coverage of the " | ||
"forward and reverse strand but sum them to a single value for each " | ||
"base.") | ||
coverage_creation_parser.add_argument( | ||
"--first_base_only", "-b", default=False, | ||
action="store_true", help="Only the first bases 5' base of each read " | ||
|
@@ -230,6 +235,12 @@ def main(): | |
"project_path", default=".", nargs="?", | ||
help="Path of the project folder. If none is given the current " | ||
"directory is used.") | ||
|
||
viz_deseq_parser.add_argument( | ||
"--max_pvalue", type=float, default="0.05", | ||
help="Maximum adjusted p-value for genes considered to be regulated. " | ||
"Genes with adjusted p-values below will be marked red. " | ||
"(default 0.05)") | ||
viz_deseq_parser.set_defaults(func=viz_deseq) | ||
|
||
args = parser.parse_args() | ||
|
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
Oops, something went wrong.