Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Bioperl beginner's program

    !usr/bin/perl -w

    use Bio:B::GenBank;
    use Bio::Restriction::EnzymeCollection;
    use Bio::Restriction::Analysis;
    my $gb=new Bio:B::GenBank();
    my $seq=$gb->getSeqbyacc('AF303112');
    print $seq->seq,"\n";
    my $allcollection=Bio::Restriction::EnzymeCollection;
    my $myenzyme=$allcollection->getenzyme('EcoRI');
    my $analysis=Bio::Restriction::Analysis->new(-seq=>$seq); @fragment=$analysis->fragments($myenzyme);
    print "@fragment\n";
    my $proobj=$seq->translate(-complete=>1);
    print $proobj->seq;

    I want to get a sequence by accession number, and then find if there is a EcoRI enzyme site in this sequence and finally translate this sequence into protein. But the output is only the Nuclear Acid sequence, what's wrong, can someone tell me? Thanks!

  • #2
    Note: if you use the advanced editor, you can wrap your code in tags which will make it much easier to read (I've added use strict, which you should use strictly!). My tweaks to your code are in bold.

    Code:
    !usr/bin/perl -w
    [B]use strict;[/B]
    use Bio:B::GenBank; 
    use Bio::Restriction::EnzymeCollection; 
    use Bio::Restriction::Analysis; 
    my $gb=new Bio:B::GenBank(); 
    my $seq=$gb->getSeqbyacc('AF303112'); 
    print $seq->seq,"\n"; 
    my $allcollection=Bio::Restriction::EnzymeCollection; 
    my $myenzyme=$allcollection->getenzyme('EcoRI'); 
    my $analysis=Bio::Restriction::Analysis->new(-seq=>$seq); 
    [B]my[/B] @fragment=$analysis->fragments($myenzyme); 
    print "@fragment\n"; 
    my $proobj=$seq->translate(-complete=>1); 
    print $proobj->seq;
    My next suggestion is that your learn the Perl debugger. If you use EMACS, you can run the debugger very nicely in the editor & easily set breakpoints.

    I'm afraid I don't see an obvious problem, but if you look at what is contained in @fragment it might give a hint. Are you sure this sequence has an EcoRI site?

    Comment

    Latest Articles

    Collapse

    • seqadmin
      Essential Discoveries and Tools in Epitranscriptomics
      by seqadmin


      The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist on Modified Bases...
      Yesterday, 07:01 AM
    • seqadmin
      Current Approaches to Protein Sequencing
      by seqadmin


      Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
      04-04-2024, 04:25 PM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, 04-11-2024, 12:08 PM
    0 responses
    44 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 10:19 PM
    0 responses
    43 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 09:21 AM
    0 responses
    38 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-04-2024, 09:00 AM
    0 responses
    55 views
    0 likes
    Last Post seqadmin  
    Working...
    X