Skip to content
Snippets Groups Projects
Commit e2fefed8 authored by tjc's avatar tjc
Browse files

fix for GFF source and sequence name when merging exons

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@11530 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent e32d3352
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/io/GFFDocumentEntry.java,v 1.63 2009-06-12 13:50:35 tjc Exp $
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/io/GFFDocumentEntry.java,v 1.64 2009-08-12 10:33:37 tjc Exp $
*/
package uk.ac.sanger.artemis.io;
......@@ -47,7 +47,7 @@ import org.gmod.schema.sequence.FeatureLoc;
* A DocumentEntry that can read an GFF entry from a Document.
*
* @author Kim Rutherford
* @version $Id: GFFDocumentEntry.java,v 1.63 2009-06-12 13:50:35 tjc Exp $
* @version $Id: GFFDocumentEntry.java,v 1.64 2009-08-12 10:33:37 tjc Exp $
**/
public class GFFDocumentEntry extends SimpleDocumentEntry
......@@ -804,7 +804,8 @@ public class GFFDocumentEntry extends SimpleDocumentEntry
new_feature.setSegmentRangeStore(id_range_store);
new_feature
.setFeature_relationship_rank_store(feature_relationship_rank_store);
new_feature.setGffSource(first_old_feature.getGffSource());
new_feature.setGffSeqName(first_old_feature.getGffSeqName());
// set the ID
String ID;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment