|
15 | 15 |
|
16 | 16 | from .heritability import MethodOptions, ModelOptions, run_graphREML |
17 | 17 | from .io import load_annotations |
18 | | -from .surrogates import get_surrogate_markers |
19 | 18 |
|
20 | 19 |
|
21 | 20 | def _construct_cmd_string(args, parser): |
@@ -880,7 +879,7 @@ def _main(args): |
880 | 879 | _add_clump_parser(subp) |
881 | 880 |
|
882 | 881 | # Surrogates command |
883 | | - _add_surrogates_parser(subp) |
| 882 | + # _add_surrogates_parser(subp) |
884 | 883 |
|
885 | 884 | # Genetic simulation command |
886 | 885 | _add_simulate_parser(subp) |
@@ -938,17 +937,18 @@ def _main(args): |
938 | 937 | parsed_args.quiet, |
939 | 938 | ) |
940 | 939 | elif parsed_args.cmd == "surrogates": |
941 | | - return _surrogates( |
942 | | - sumstats=parsed_args.sumstats, |
943 | | - out=parsed_args.out, |
944 | | - metadata=parsed_args.metadata, |
945 | | - num_processes=parsed_args.num_processes, |
946 | | - run_in_serial=parsed_args.run_in_serial, |
947 | | - population=parsed_args.population, |
948 | | - verbose=parsed_args.verbose, |
949 | | - quiet=parsed_args.quiet, |
950 | | - chromosome=parsed_args.chromosome, |
951 | | - ) |
| 940 | + raise NotImplementedError |
| 941 | + # return _surrogates( |
| 942 | + # sumstats=parsed_args.sumstats, |
| 943 | + # out=parsed_args.out, |
| 944 | + # metadata=parsed_args.metadata, |
| 945 | + # num_processes=parsed_args.num_processes, |
| 946 | + # run_in_serial=parsed_args.run_in_serial, |
| 947 | + # population=parsed_args.population, |
| 948 | + # verbose=parsed_args.verbose, |
| 949 | + # quiet=parsed_args.quiet, |
| 950 | + # chromosome=parsed_args.chromosome, |
| 951 | + # ) |
952 | 952 | elif parsed_args.cmd == "simulate": |
953 | 953 | return _simulate( |
954 | 954 | parsed_args.sumstats_out, |
|
0 commit comments