Skip to content

Instantly share code, notes, and snippets.

@ConradStack
ConradStack / bamfilter_oneliners.md
Created February 17, 2017 19:59 — forked from davfre/bamfilter_oneliners.md
SAM and BAM filtering oneliners
@ConradStack
ConradStack / append.pl
Created January 9, 2017 23:22 — forked from jimhester/append.pl
Parsing fasta files in perl ruby python and go
#!/usr/bin/env perl
use warnings;use strict;
my ($header,$sequence);
$header = <>;
chomp $header;
while(my $line = <>){
chomp $line;
if($line =~ /^>/){
@ConradStack
ConradStack / 0_reuse_code.js
Created June 22, 2016 16:04
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console