Skip to content

Commit

Permalink
include parser fix scalefacestimation
Browse files Browse the repository at this point in the history
  • Loading branch information
WardDeb committed Jan 17, 2024
1 parent ae7aed4 commit 8fc7c79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* documentation changes to improve ESS tab, table constraints have been lifted & sphinx_rtd_theme to v2.0.0
* upload artifact in gh test runner pinned to 3
* Try to get the number of processors from sched_getaffinity, to avoid using to many in job submissions for example. #1199
* Fix typo in estimateScaleFactor that fixes broken argparsing. #1286

3.5.4
* error handling and cases for bwAverage with >2 samples
Expand Down
2 changes: 1 addition & 1 deletion deeptools/estimateScaleFactor.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def main(args=None):
between to samples
"""
args = parseArguments().parse_args(args)
args = parseArguments(args)
if len(args.bamfiles) > 2:
print("SES method to estimate scale factors only works for two samples")
exit(0)
Expand Down

0 comments on commit 8fc7c79

Please sign in to comment.