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

fix for creating features from graph peaks

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@14102 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 69f18123
No related branches found
No related tags found
No related merge requests found
......@@ -447,8 +447,9 @@ public class ChadoTransactionManager
public void entryChanged(EntryChangeEvent event)
{
logMDC();
if(event.getType() == EntryChangeEvent.FEATURE_ADDED)
{
{
// if this is a duplicate feature then ignore
if(event.isDuplicate())
{
......@@ -475,6 +476,9 @@ public class ChadoTransactionManager
final Feature feature = event.getFeature();
if(! (((GFFStreamFeature)feature.getEmblFeature()).getDocumentEntry().getDocument() instanceof DatabaseDocument))
return;
final FeatureSegmentVector segments = feature.getSegments();
if(segments != null && segments.size() > 1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment