Skip to content

Commit

Permalink
3 to 4 in names
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Mitrofanov committed Jun 1, 2022
1 parent 3eeb7b8 commit a5bbe60
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
40 changes: 20 additions & 20 deletions .github/classroom/autograding.json
Original file line number Diff line number Diff line change
@@ -1,99 +1,99 @@
{
"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",
"timeout": 10,
"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",
"timeout": 10,
"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",
"timeout": 10,
"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",
"timeout": 10,
"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",
"timeout": 10,
"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",
"timeout": 10,
"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",
"timeout": 10,
"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",
"timeout": 10,
"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",
"timeout": 10,
"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",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_exercise_sheet6.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a5bbe60

Please sign in to comment.