Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 767 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 767 Bytes

Cogniterra/Stepik Bioinformatics/Genomics with Python

Solutions (spoilers!) for same course in 3 platforms:

Functional Packages and Usage

Functional Programming and String Algorithms is like Peanut Butter meets Bread, so many are used here.

pipe lib usage

from pipe import permutations

for n in 'AC' | permutations(2):
   print(n)

Setup / Python version

Use python 3.12

Running

python src/cogniterra/1-1.py     # run all exercises in 1-1.seq
python src/cogniterra/1-1.py 1   # run exercise 1 in 1-1.seq
python src/cogniterra/1-1.py 2:4 # run exercise 2-4 in 1-1.seq