[Biojava-dev] [Bug 2161] New: Feature type string lost after	RichFeature enrich()
    bugzilla-daemon at portal.open-bio.org 
    bugzilla-daemon at portal.open-bio.org
       
    Wed Dec  6 03:19:59 UTC 2006
    
    
  
http://bugzilla.open-bio.org/show_bug.cgi?id=2161
           Summary: Feature type string lost after RichFeature enrich()
           Product: BioJava
           Version: unspecified
          Platform: Macintosh
        OS/Version: MacOS X
            Status: NEW
          Severity: normal
          Priority: P2
         Component: seq
        AssignedTo: biojava-dev at biojava.org
        ReportedBy: ryan at cs.brown.edu
Version 1.5-beta 
RichFeature.Template t = new RichFeature.Template();
t.type = "my type";
t.location = new PointLocation(1);
Sequence s = DNATools.createDNASequence("A", "my sequence");
Feature f = s.createFeature(t);
System.out.println("f.getType()==" + f.getType()); // prints "my type"
RichFeature rf = RichFeature.Tools.enrich(f);
System.out.println("rf.getType()==" + rf.getType()); // prints "any"
-- 
Configure bugmail: http://bugzilla.open-bio.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
    
    
More information about the biojava-dev
mailing list