From 6d86abae9fa297e80c7ff2f2d0cc06264439772f Mon Sep 17 00:00:00 2001 From: James Willson Date: Sun, 21 Apr 2024 01:40:01 -0500 Subject: [PATCH] incremented version --- README.md | 1 + disco.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c7186f3..001ba35 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ Decomposition Into Single-COpy gene trees ([DISCO](https://doi.org/10.1093/sysbi - v1.2 (June 8th, 2022): Tree rerooting fix (addresses issue with treeswift rooting with no edge lengths) - v1.3 (July 8th, 2022): Allows for more flexibility with leaf labels - v1.3.1 (October 31st, 2022): Fixes issue where extra newline character at the end of the file causes a crash +- v1.4.0 (April 21st, 2024): Added ability to make a partition file to CA-DISCO **Note:** At present, it is recommended to use the latest version if you want to run the DISCO algorithm as described in Willson et al. 2021, as using earlier versions can causes results inconsistent with the DISCO algorithm in rare cases. diff --git a/disco.py b/disco.py index edc0167..1e02a0b 100644 --- a/disco.py +++ b/disco.py @@ -325,7 +325,7 @@ def main(args): if __name__ == "__main__": - parser = argparse.ArgumentParser(description='====================== DISCO v1.3.1 ======================') + parser = argparse.ArgumentParser(description='====================== DISCO v1.4.0 ======================') parser.add_argument("-i", "--input", type=str, help="Input tree list file", required=True)