How to do variant calling on .sam files using 'bio-samtools'?
I have the code:
#!/usr/bin/ruby
require 'bio-samtools'
bam = Bio::DB::Sam.new(:bam=>"my_sorted.bam", :fasta=>'ref.fasta')
bam.open
What methods to call on bam object or what next steps to do? Thank you.
why not using a simple shell script ?
Need all in one Ruby workflow, thank you for you replies