File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2424from deeptools .computeMatrixOperations import filterHeatmapValues
2525import textwrap , re
2626
27-
28- plt .style .use ('ggplot' )
29-
3027debug = 0
3128old_settings = np .seterr (all = 'ignore' )
3229plt .ioff ()
3330
3431def parse_arguments (args = None ):
3532 parser = argparse .ArgumentParser (
36- parents = [parserCommon .heatmapperMatrixArgs (),
33+ parents = [parserCommon .heatmapperMatrixArgs (),
3734 parserCommon .heatmapperOutputArgs (mode = 'heatmap' ),
3835 parserCommon .heatmapperOptionalArgs (mode = 'heatmap' )],
3936 formatter_class = argparse .ArgumentDefaultsHelpFormatter ,
@@ -679,6 +676,9 @@ def main(args=None):
679676
680677 if args .samplesLabel and len (args .samplesLabel ):
681678 hm .matrix .set_sample_labels (args .samplesLabel )
679+
680+ if args .ggplot :
681+ plt .style .use ('ggplot' )
682682
683683 if args .sortRegions != 'no' :
684684 sortUsingSamples = []
You can’t perform that action at this time.
0 commit comments