User contributions for WikiSysop
Jump to navigation
Jump to search
24 March 2025
- 15:5215:52, 24 March 2025 diff hist +3,606 N Unit test - start of reverse polish notation class Created page with "These are the two files, I made in class for unit test demo purposes. My original class in the file: ReversePolishCalc.py <pre> class ReversePolishCalc: def __init__(self): self.stack = list() def _checkstack(self, count): if len(self.stack) < count: raise IndexError("Stack does not contain enough elements to perform operaation") def push(self, vector): if isinstance(vector, (int, float, str)): vector = [..." current
- 15:4815:48, 24 March 2025 diff hist +69 m Unit test →Required course material for the lesson current
17 March 2025
- 19:2419:24, 17 March 2025 diff hist +24 m Classes →Exercises to be handed in current
- 19:2219:22, 17 March 2025 diff hist +2 Classes →Exercises to be handed in
- 19:2019:20, 17 March 2025 diff hist +52 m Classes →Exercises to be handed in
- 19:1719:17, 17 March 2025 diff hist +28 m Classes →Exercises to be handed in
- 19:1519:15, 17 March 2025 diff hist 0 m Classes →Exercises to be handed in
- 19:1319:13, 17 March 2025 diff hist +219 m Classes →Exercises to be handed in
- 19:0619:06, 17 March 2025 diff hist +180 Regular Expressions →Exercises to be handed in current
16 March 2025
- 08:1208:12, 16 March 2025 diff hist +24 m Comprehension, Generators, Functions and Methods →Exercises to be handed in current
- 08:0408:04, 16 March 2025 diff hist +82 m Python Recap and Objects →Exercises to be handed in current
20 January 2025
- 12:4312:43, 20 January 2025 diff hist +7 m 22113/22163 - Unix & Python Programming for Bioinformaticians →Prepare for the course current
17 January 2025
- 17:3717:37, 17 January 2025 diff hist +35 m Programme No edit summary current
- 17:3517:35, 17 January 2025 diff hist 0 m Programme No edit summary
- 17:3417:34, 17 January 2025 diff hist 0 Programme No edit summary
- 17:1217:12, 17 January 2025 diff hist +2,113 N Programme - Spring 2024 Created page with "'''Collection of files''' used in the exercises and lessons - all gathered here. * M 29/01 Lesson 1: Unix * T 01/02 More lecture on Unix * M 05/02 Lesson 2: Python Recap and Objects * T 08/02 Official talk about Random numbers * M 12/02 Lesson 3: Regular Expressions * T 15/02 Continuing lesson * M 19/02 Lesson 4: Making Functions * T 22/02 Unofficial talk about Garbage Collection in Python * M 26/02 Lesson 5: Advanced Data Structures and New Da..." current
- 17:1117:11, 17 January 2025 diff hist +4 m 22113/22163 - Unix & Python Programming for Bioinformaticians →Archive of old course programmes
- 17:1117:11, 17 January 2025 diff hist +28 m 22113/22163 - Unix & Python Programming for Bioinformaticians →Archive of old course programmes
19 November 2024
- 12:1012:10, 19 November 2024 diff hist +1 Programme →Curious about the exam
- 12:0912:09, 19 November 2024 diff hist +2 m Programme No edit summary
- 12:0812:08, 19 November 2024 diff hist +278 m Programme No edit summary
2 September 2024
- 19:0419:04, 2 September 2024 diff hist 0 m Course preparation →WSL/WSL2, Windows Subsystem for Linux current
- 19:0319:03, 2 September 2024 diff hist −36 m Course preparation →WSL/WSL2, Windows Subsystem for Linux
- 19:0219:02, 2 September 2024 diff hist +1 m Course preparation →WSL/WSL2, Windows Subsystem for Linux
- 19:0219:02, 2 September 2024 diff hist −22 m Course preparation →WSL/WSL2, Windows Subsystem for Linux
15 May 2024
- 16:3416:34, 15 May 2024 diff hist +69 m Resistance to antibiotics →Optimization current
13 May 2024
- 19:2719:27, 13 May 2024 diff hist −7 Data analysis →Description current
- 19:2619:26, 13 May 2024 diff hist +4 Data analysis →Description
- 19:2519:25, 13 May 2024 diff hist +164 Data analysis →Description
- 18:0218:02, 13 May 2024 diff hist +159 Data analysis →Description
- 17:5617:56, 13 May 2024 diff hist +23 Data analysis →Description
- 17:5017:50, 13 May 2024 diff hist +103 Data analysis →Description
- 11:0411:04, 13 May 2024 diff hist +54 m Data analysis No edit summary
- 00:1800:18, 13 May 2024 diff hist +7 m Data analysis →Description
- 00:1700:17, 13 May 2024 diff hist +569 m Data analysis →Description
22 April 2024
- 19:0519:05, 22 April 2024 diff hist −2 Aligning expectations →The report itself current
- 19:0519:05, 22 April 2024 diff hist +156 Aligning expectations →Report sections
- 18:5818:58, 22 April 2024 diff hist +127 m Aligning expectations →The code
- 18:5618:56, 22 April 2024 diff hist +29 Aligning expectations →The report itself
11 April 2024
- 09:0009:00, 11 April 2024 diff hist 0 m Scientific Libraries, Pandas, Numpy →Required course material for the lesson current
4 April 2024
- 16:0216:02, 4 April 2024 diff hist +1 m Scientific Libraries, Pandas, Numpy No edit summary
- 15:4515:45, 4 April 2024 diff hist −6 22113/22163 - Unix & Python Programming for Bioinformaticians →Resources
- 15:4215:42, 4 April 2024 diff hist +144 m Project list No edit summary current
20 March 2024
- 12:0412:04, 20 March 2024 diff hist +3,660 Example code - Unit test No edit summary current
- 12:0412:04, 20 March 2024 diff hist +106 Example code - Classes No edit summary current
13 March 2024
- 16:0516:05, 13 March 2024 diff hist +21 Scientific Libraries, Statistics →Exercises to be handed in current
- 16:0316:03, 13 March 2024 diff hist −171 m Aligning expectations No edit summary
- 16:0216:02, 13 March 2024 diff hist +11,482 N Code construction Created page with "Learning how to construct good code is a main goal of the course. An important tool to facilitate this is peer evaluation. It is beneficial for you both to evaluate others, seeing other ways of solving the same problem - and to get feedback from other people on your own work. When evaluating you should check the teachers solutions to have some kind of reference apart from your own.<br> Tip: <span style="color:red">If you want your peer to pay specific attention to someth..." current
- 16:0116:01, 13 March 2024 diff hist +129 22113/22163 - Unix & Python Programming for Bioinformaticians →Course details
6 March 2024
- 18:0018:00, 6 March 2024 diff hist +2,596 N Shortest path in graph Created page with "__NOTOC__ === Description === The program is given as input a file containing connected nodes in a graph and a weight assigned to the edge between the nodes. The program shall answer the questions: Is there a path between two given nodes in the graph? If so, what is the shortest path ?<br> This is useful in a number of situations: Protein interaction, which proteins interact together, thereby discovering f.ex. new pathways. Social networks, who knows who, proving the "si..." current