Skip to content

Commit

Permalink
missed a comma in the list
Browse files Browse the repository at this point in the history
  • Loading branch information
csbrasnett committed Mar 3, 2023
1 parent 762270f commit b33cdbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polyply/tests/test_simple_seq_parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def test_sequence_parses_RNA(extension):
def test_sequence_parses_PROTEIN():
filepath = Path(TEST_DATA + "/simple_seq_files/test_protein.fasta")
seq_graph = MetaMolecule.parsers["fasta"](filepath)
monomers = ["GLY", "ALA" "LYS", "TRP", "ASN", "VAL", "PHE", "PRO", "SER"]
monomers = ["GLY", "ALA", "LYS", "TRP", "ASN", "VAL", "PHE", "PRO", "SER"]
ref_graph = _monomers_to_linear_nx_graph(monomers)
assert nx.is_isomorphic(seq_graph, ref_graph, node_match=_node_match)

Expand Down

0 comments on commit b33cdbf

Please sign in to comment.