Skip to content
Snippets Groups Projects
Commit 3dc666cb authored by Tim O'Donnell's avatar Tim O'Donnell
Browse files

fix test

parent 5e100c1f
No related merge requests found
...@@ -278,7 +278,7 @@ def run(argv=sys.argv[1:]): ...@@ -278,7 +278,7 @@ def run(argv=sys.argv[1:]):
del predictions["best_allele"] del predictions["best_allele"]
for col in predictions.columns: for col in predictions.columns:
if col not in ("allele", "peptide", "experiment_name"): if col not in ("allele", "peptide", "experiment_name", "peptide_num"):
df[args.prediction_column_prefix + col] = predictions[col] df[args.prediction_column_prefix + col] = predictions[col]
if args.out: if args.out:
......
...@@ -45,6 +45,7 @@ def test_no_csv(): ...@@ -45,6 +45,7 @@ def test_no_csv():
"--alleles", "HLA-A0201", "H-2-Kb", "--alleles", "HLA-A0201", "H-2-Kb",
"--peptides", "SIINFEKL", "DENDREKLLL", "PICKLEEE", "--peptides", "SIINFEKL", "DENDREKLLL", "PICKLEEE",
"--prediction-column-prefix", "mhcflurry1_", "--prediction-column-prefix", "mhcflurry1_",
"--affinity-only",
] ]
deletes = [] deletes = []
...@@ -61,7 +62,7 @@ def test_no_csv(): ...@@ -61,7 +62,7 @@ def test_no_csv():
os.unlink(delete) os.unlink(delete)
print(result) print(result)
assert_equal(result.shape, (6, 6)) assert_equal(len(result), 6)
sub_result1 = result.loc[result.peptide == "SIINFEKL"].set_index("allele") sub_result1 = result.loc[result.peptide == "SIINFEKL"].set_index("allele")
print(sub_result1) print(sub_result1)
assert ( assert (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment