milkweedgenome.org - Some of the useful bioinformatics scripts.
For example ... contig-stats.pl is a Perl script that will automatically describe features of a sequence assembly.
http://milkweedgenome.org/?q=scripts
www.tutorialspoint.com - Online coding group for most of the programming languages.
Code in almost all popular languages using Coding Ground. Edit, compile, execute and share your projects, 100% cloud.
http://www.tutorialspoint.com/codingground.htm
Perl has a ton of command line switches (see perldoc perlrun), but I'm just going to cover the ones you'll commonly need to debug code. The most important switch is -e, for execute (or maybe "engage" :) ). The -e switch takes a quoted string of Perl...
Solved with perl http://rosalind.info/problems/1a/
#Find the most frequent k-mers in a string.#Given: A DNA string Text and an integer k.#Return: All most frequent k-mers in Text (in any order).use strict;use warnings;my...
The question at http://rosalind.info/problems/1d/
Script are moved to http://bioinformaticsonline.com/snippets/view/34633/clump-finding-problem-solved-with-perl
elp.ucdavis.edu - Generic Genome Browser Version 2: A Tutorial for Administrators
This is an extensive tutorial to take you through the main features and gotchas of configuring GBrowse as a server. This tutorial assumes that you have successfully set up Perl, GD,...
Hmm .. Don't worry you read it right .. this is not pi but bi ... "life of Bioinformatician(BI)".
Disclaimer: This cartoon is solely designed to create humour and fun, not to offend any PI, supervisor or student.
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...