Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Bioperl MSG: seq doesn't validate fetch genbank from NCBI using GI

    I am trying to fetch genebank features, this code works for some GenbankIDs but not for this one as an example.
    use strict;
    use warnings;
    use Bio::SeqIO;
    use Bio:B::EUtilities;
    my $gi="385220095";
    my $factoryID = Bio:B::EUtilities->new(-eutil => 'efetch',
    -db =>'protein',
    -rettype=> 'gbwithparts',
    -email=> '[email protected]',
    -id=>$gi) ;
    my $gbfile="$gi.gbk";
    $factoryID->get_Response(-file =>$gbfile);
    my $seqio_object = Bio::SeqIO->new(-file =>"$gbfile",'protein');
    while ( my $seq_object=$seqio_object->next_seq){
    for my $feat_object ($seq_object->get_SeqFeatures) {
    my $sequence_string = $feat_object->spliced_seq->seq;
    }
    }

  • #2
    If you really want someone to offer help you need to provide more information:

    - What do you expect the code to do if it works?
    - What is the code doing that your don't expect?
    - Are there any error messages output?
    - What have you already tried yourself to resolve the problem?

    P.S. When posting code snippets to this forum please enclose the code in 'CODE' tags and properly format it (e.g. indentation) so it is easier to read and understand.

    Code:
    #!/usr/bin/perl
    
    use strict;
    use warnings;
    use Bio::SeqIO;
    use Bio::DB::EUtilities;
    
    my $gi="385220095";
    my $factoryID = Bio::DB::EUtilities->new(-eutil => 'efetch',
    					-db =>'protein',
    					-rettype=> 'gbwithparts',
    					-email=> '[email protected]',
    					-id=>$gi);
    
    my $gbfile="$gi.gbk";
    $factoryID->get_Response(-file =>$gbfile);
    
    my $seqio_object = Bio::SeqIO->new(-file =>"$gbfile",'protein');
    
    while ( my $seq_object=$seqio_object->next_seq)	{
        for my $feat_object ($seq_object->get_SeqFeatures) {
            my $sequence_string = $feat_object->spliced_seq->seq;
        }
    }

    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...
      04-22-2024, 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, Yesterday, 08:47 AM
    0 responses
    16 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-11-2024, 12:08 PM
    0 responses
    60 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 10:19 PM
    0 responses
    60 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 09:21 AM
    0 responses
    54 views
    0 likes
    Last Post seqadmin  
    Working...
    X