'Added ex1 file'

This commit is contained in:
Arkadiusz Hypki 2024-10-04 09:59:46 +02:00
commit 8b150bb610
2 changed files with 27 additions and 0 deletions

17
README.md Normal file
View File

@ -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/

10
ex1.md Normal file
View File

@ -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)