# HG changeset patch # User bgruening # Date 1570203207 14400 # Node ID ff6ee551b153db7adb87499a964abf6934da0cb6 # Parent 359f8b60d316702c32fe92f1b20e3708a9042d83 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/bismark commit 2d8f9bfd501f1cd82b5cf0429c1b02b3784392ab" diff -r 359f8b60d316 -r ff6ee551b153 bismark_methylation_extractor.py --- a/bismark_methylation_extractor.py Fri Oct 04 07:54:51 2019 -0400 +++ b/bismark_methylation_extractor.py Fri Oct 04 11:33:27 2019 -0400 @@ -97,7 +97,7 @@ # Set up all options if args.multicore > 3: # divide multicore by 3 here since bismark will spawn ~3 jobs. - cmd.extend(['--multicore', str(math.ceil(args.multicore / 3))]) + cmd.extend(['--multicore', str(int(math.floor(args.multicore / 3)))]) if args.single_end: cmd.append('--single-end') else: