Skip to content

Commit 1825bfa

Browse files
authored
Changed "cdna.faa" to "cdna.fna"
1 parent 2d9aaa5 commit 1825bfa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

prog/p1/runnerp1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
def runner():
1010
assert lab.dna2aa('ATTGCGATGGCGCCGGAACCGACCATTGATGAATAA') == 'IAMAPEPTIDE*'
1111
assert lab.dna2aa('ATGGCCATGGCGCCCAGAACTGAGATCAATAGTACCCGTATTAACGGGTGA') == 'MAMAPRTEINSTRING*'
12-
lab.dna2aa_fasta('cdna.faa', 'output.faa')
12+
lab.dna2aa_fasta('cdna.fna', 'output.faa')
1313
assert filecmp.cmp('output.faa', '0shift.faa', shallow=False) == True
1414
for author in lab.authors:
1515
print(author)
1616
print('made a function that passed all tests!')
1717

1818

1919
if __name__ == "__main__":
20-
runner()
20+
runner()

0 commit comments

Comments
 (0)