Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Bioperl samtools: problem with reference

    Hi all

    I am having problems processing a BAM file using Bio:B::Sam.

    I want to examine variants in a BAM file using code developed from the example offered by Lincoln Stein on the CPAN Bio:B::Sam page. When I run my code (below) I get errors saying:

    Use of uninitialized value in transliteration (tr///) at myScript.pl line 22

    and also

    Use of uninitialized value $refbase in concatenation (.) or string at myScript.pl line 24

    It seems that my code is not reading or accessing the reference genome correctly, can any one point me towards a solution?

    Thanks

    Ross

    #!usr/bin/perl -w

    use Bio:B::Sam;

    use strict;

    my $bamFile="myBamFile.bam";

    my $bam = Bio:B::Sam->new(-bam => $bamFile,
    -fasta=>"MyReference.fasta",
    -autoindex => 1);

    my @targets = $bam->seq_ids;

    my @SNPs; # this will be list of SNPs
    my $snp_caller = sub {
    my ($seqid,$pos,$p) = @_;

    my $segment=$bam->segment($seqid);
    my $refbase = $bam->segment($seqid,$pos,$pos)->dna;

    $refbase=~tr/a-z/A-Z/;

    print $refbase." \n";

    };

    foreach my $chr (@targets){
    print $chr."\n";
    $bam->pileup($chr,$snp_caller);
    }

Latest Articles

Collapse

  • seqadmin
    Non-Coding RNA Research and Technologies
    by seqadmin




    Non-coding RNAs (ncRNAs) do not code for proteins but play important roles in numerous cellular processes including gene silencing, developmental pathways, and more. There are numerous types including microRNA (miRNA), long ncRNA (lncRNA), circular RNA (circRNA), and more. In this article, we discuss innovative ncRNA research and explore recent technological advancements that improve the study of ncRNAs.

    Nobel Prize for MicroRNA Discovery
    This week,...
    10-07-2024, 08:07 AM
  • seqadmin
    Recent Developments in Metagenomics
    by seqadmin





    Metagenomics has improved the way researchers study microorganisms across diverse environments. Historically, studying microorganisms relied on culturing them in the lab, a method that limits the investigation of many species since most are unculturable1. Metagenomics overcomes these issues by allowing the study of microorganisms regardless of their ability to be cultured or the environments they inhabit. Over time, the field has evolved, especially with the advent...
    09-23-2024, 06:35 AM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, 10-02-2024, 04:51 AM
0 responses
103 views
0 likes
Last Post seqadmin  
Started by seqadmin, 10-01-2024, 07:10 AM
0 responses
111 views
0 likes
Last Post seqadmin  
Started by seqadmin, 09-30-2024, 08:33 AM
1 response
114 views
0 likes
Last Post EmiTom
by EmiTom
 
Started by seqadmin, 09-26-2024, 12:57 PM
0 responses
20 views
0 likes
Last Post seqadmin  
Working...
X