From 7f68a49b1875124b03e9a41d9648003f78b3cd76 Mon Sep 17 00:00:00 2001 From: Fred Wright Date: Tue, 19 Jan 2021 14:03:34 -0800 Subject: [PATCH] [FIX] Fix multi-individual ancestor download. The 'todo' variable for the ancestor download needs to be a set, not the original comma-separated string. TESTED: Downloads of multiple individuals now include ancestors when appropriate. --- getmyancestors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getmyancestors.py b/getmyancestors.py index a121a32..86c29df 100755 --- a/getmyancestors.py +++ b/getmyancestors.py @@ -1214,7 +1214,7 @@ def main(): tree.add_indis(todo) # download ancestors - todo = set(todo) + todo = set(tree.indi.keys()) done = set() for i in range(args.ascend): if not todo: -- 2.52.0