commit 8b150bb610370ed32e11febd18afcf051f9b151b Author: Arkadiusz Hypki Date: Fri Oct 4 09:59:46 2024 +0200 'Added ex1 file' diff --git a/README.md b/README.md new file mode 100644 index 0000000..a06fc9b --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# Programowanie obiektowe, bioinformatyka + +## Useful links + +Standard C library: + +* https://cplusplus.com/reference/cstdio/ + +C++ string and vector class: + +* https://cplusplus.com/reference/string/ +* https://cplusplus.com/reference/vector/vector/ + +Lectures: + +* https://ocw.mit.edu/courses/6-087-practical-programming-in-c-january-iap-2010/ +* https://ocw.mit.edu/courses/6-096-introduction-to-c-january-iap-2011/ diff --git a/ex1.md b/ex1.md new file mode 100644 index 0000000..f052704 --- /dev/null +++ b/ex1.md @@ -0,0 +1,10 @@ +1. Create a project for C++ + + * create a simple main function with an example loop which prints something to the screen + * start the debugger to make sure it is working + +2. Create a git repository for your code + +3. Create a class Sequence to store a sequence (do everything with Object Oriented Programming in mind) + +4. Create a method in your class to read some example fasta file (path name as a parameter)