From a5bbe60ba91c0353e61dd0d6f4168e7a6b3716f8 Mon Sep 17 00:00:00 2001 From: Alexander-Mitrofanov Date: Wed, 1 Jun 2022 16:29:19 +0200 Subject: [PATCH] 3 to 4 in names --- .github/classroom/autograding.json | 40 +++++++++++++++--------------- README.md | 2 +- tests/test_exercise_sheet6.py | 2 +- 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/classroom/autograding.json b/.github/classroom/autograding.json index d9b46ea..3ae9918 100644 --- a/.github/classroom/autograding.json +++ b/.github/classroom/autograding.json @@ -1,9 +1,9 @@ { "tests": [ { - "name": "Exercise 3 - Programming assignment a", + "name": "Exercise 4 - Programming assignment a", "setup": "sudo -H pip3 install -r requirements.txt --quiet", - "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '3a'", + "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '4a'", "input": "", "output": "", "comparison": "included", @@ -11,9 +11,9 @@ "points": 6 }, { - "name": "Exercise 3 - Programming assignment b", + "name": "Exercise 4 - Programming assignment b", "setup": "", - "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '3b'", + "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '4b'", "input": "", "output": "", "comparison": "included", @@ -21,9 +21,9 @@ "points": 6 }, { - "name": "Exercise 3 - Programming assignment c1", + "name": "Exercise 4 - Programming assignment c1", "setup": "", - "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '3c1'", + "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '4c1'", "input": "", "output": "", "comparison": "included", @@ -31,9 +31,9 @@ "points": 6 }, { - "name": "Exercise 3 - Programming assignment c2", + "name": "Exercise 4 - Programming assignment c2", "setup": "", - "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '3c2'", + "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '4c2'", "input": "", "output": "", "comparison": "included", @@ -41,9 +41,9 @@ "points": 6 }, { - "name": "Exercise 3 - Programming assignment c3", + "name": "Exercise 4 - Programming assignment c3", "setup": "", - "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '3c3'", + "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '4c3'", "input": "", "output": "", "comparison": "included", @@ -51,9 +51,9 @@ "points": 6 }, { - "name": "Exercise 3 - Programming assignment d1", + "name": "Exercise 4 - Programming assignment d1", "setup": "", - "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '3d1'", + "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '4d1'", "input": "", "output": "", "comparison": "included", @@ -61,9 +61,9 @@ "points": 6 }, { - "name": "Exercise 3 - Programming assignment d2", + "name": "Exercise 4 - Programming assignment d2", "setup": "", - "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '3d2'", + "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '4d2'", "input": "", "output": "", "comparison": "included", @@ -71,9 +71,9 @@ "points": 6 }, { - "name": "Exercise 3 - Programming assignment d3", + "name": "Exercise 4 - Programming assignment d3", "setup": "", - "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '3d3'", + "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '4d3'", "input": "", "output": "", "comparison": "included", @@ -81,9 +81,9 @@ "points": 6 }, { - "name": "Exercise 3 - Programming assignment d4", + "name": "Exercise 4 - Programming assignment d4", "setup": "", - "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '3d4'", + "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '4d4'", "input": "", "output": "", "comparison": "included", @@ -91,9 +91,9 @@ "points": 6 }, { - "name": "Exercise 3 - Programming assignment e", + "name": "Exercise 4 - Programming assignment e", "setup": "", - "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '3e'", + "run": "pytest -s --no-header --tb=no ./tests/test_exercise_sheet6.py -k '4e'", "input": "", "output": "", "comparison": "included", diff --git a/README.md b/README.md index a4219d7..cf970e2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Lehrstuhl für Bioinformatik - Institut für Informatik - *http://www.bioinf.uni ##### Exercise sheet 6: BLAST --- -### _Exercise 3 - Programming Assignment_ +### _Exercise 4 - Programming Assignment_ In this exercise you will implement a simplified version of the BLAST algorithm. Please note that the implementation is created for the educational purposes and only mimics the BLAST algorithm. Also note that in this sheet we will be working with the protein sequences. diff --git a/tests/test_exercise_sheet6.py b/tests/test_exercise_sheet6.py index f2a08d5..0a63cd7 100644 --- a/tests/test_exercise_sheet6.py +++ b/tests/test_exercise_sheet6.py @@ -42,7 +42,7 @@ def blosum62(): return file -def test_exercise_3a(): +def test_exercise_4a(): blosum_dict = blosum62() expected = convert_blosum_txt_to_dict_correct(blosum_dict) actual = read_blosum62(blosum_dict)