From 39d9681618fc7ab3fc3f74b41d373639f9f09bef Mon Sep 17 00:00:00 2001 From: Blaise Li <blaise.li__git@nsup.org> Date: Wed, 29 Apr 2020 20:32:36 +0200 Subject: [PATCH] Nicer message. --- scripts/copypaste_bigwig_regions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/copypaste_bigwig_regions.py b/scripts/copypaste_bigwig_regions.py index aaf5c6e..3e732e6 100755 --- a/scripts/copypaste_bigwig_regions.py +++ b/scripts/copypaste_bigwig_regions.py @@ -91,7 +91,7 @@ def main(): region_extractor = itemgetter("chrom", "start", "end") from_region = region_extractor(config["from_region"]) to_region = region_extractor(config["to_region"]) - print(f"Copying {from_region} of {config['from_bw']} " + print(f"Copying {from_region} of {config['from_bw']}\n" f"into {to_region} of {config['to_bw']}") paste_bigwig_region( config["from_bw"], config["to_bw"], -- GitLab