You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser = argparse.ArgumentParser("Creates a summary metrics.tsv table containing performance metrics for varCA and the variant callers in the ensemble.")
parser.add_argument(
"pts", type=Path, help="path to the pts dir within your test set's classify/prc/ directory"
)
parser.add_argument(
"out", nargs='?', default=sys.stdout,
help="the filename to which to save the metrics table (default: stdout)"
)
args = parser.parse_args()
df = pd.concat([
pd.read_csv(f, sep="\t", header=None, names=['varca' if f.stem == 'breakca' else f.stem])