comparison snpEff_2_1a/scripts/bam2fastq.pl @ 0:f8eaa3f8194b default tip

Uploaded snpEff_v2_1a_core.tgz from Pablo Cingolani
author greg
date Fri, 20 Apr 2012 14:47:09 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f8eaa3f8194b
1 #!/usr/bin/perl
2
3 while( $l = <STDIN> ) {
4 chomp $l;
5 @t = split /\t/, $l;
6 print "\@$t[0]\n$t[9]\n+\n$t[10]\n";
7 }
8