Awk is a programming language which allows easy manipulation of structured data and is mostly used for pattern scanning and processing. It searches one or more files to see if they contain lines that match with the specified patterns and then...
Bioinformatics education is often limited to technical education about coding or utilization of code-line tools, however what is significantly lacking is an appreciation of big data and multi-omics challenges related to solving important and...
Jan Lisec from the Max Planck Institute of Molecular Plant Physiology explains, in this "pimp your brain" episode, what bioinformatics is and why bioinformatics is so important and indispensable for biological research.
In the video serial "Pimp...
For a beginner this can be is the hardest part, it is also the most important to get right.
It is possible to create a vector by typing data directly into R using the combine function ‘c’
x
same as
x
creates the vector x...
Question at http://rosalind.info/problems/1b/
#Find the reverse complement of a DNA string.#Given: A DNA string Pattern.#Return: Pattern, the reverse complement of Pattern.use strict;use warnings;my $string="AAAACCCGGT";my $finalString="";my %hash...