Post 7: Things I Learned the Hard Way in Bioinformatics đ€
Published:
Â
Top 7 (Most Disturbing) Things I Learned the Hard Way in the World of Bioinformatics (so far):
- Reading articles is useless if you donât write code and experiment with it (failing many times). Sometimes it reads easier than it seems. And if you donât practice it, you forget it.
- Never trust a database, no matter how âmanually curatedâ it is advertised. Visualize everything!
- Have all your code organized (a folder with âsourceâ data, results, notebooks, scripts, etc.) and commented (description or links to pages where you found the solution). If you work in the terminal, always have a âreadmeâ file with a description of the commands and directories.
- If your script doesnât run, you probably missed a â;â or misspelled a path/variable. Itâs not because the machine is wrong.
- Briefly check how a piece of code in a program works before using it. Sometimes, the authors of the code do something that messes up the analysis.
- Underscores, even if you donât like them at first, will be your best friends when naming anything. Try to use an idiomatic style when naming anything instead of names that only you understand (e.g., gibbs_energy »> ddG).
- Anything you plan to do, someone has probably done it before, and thereâs even a program that will make your life easier by automating the process. Donât be upset when an algorithm replaces you.