From 8b150bb610370ed32e11febd18afcf051f9b151b Mon Sep 17 00:00:00 2001 From: Arkadiusz Hypki Date: Fri, 4 Oct 2024 09:59:46 +0200 Subject: [PATCH] 'Added ex1 file' --- README.md | 17 +++++++++++++++++ ex1.md | 10 ++++++++++ 2 files changed, 27 insertions(+) create mode 100644 README.md create mode 100644 ex1.md 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)