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

add gene list to transfer annotation tool

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@9759 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 4aca2a07
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/components/FeatureEdit.java,v 1.65 2009-01-15 10:31:02 tjc Exp $
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/FeatureEdit.java,v 1.66 2009-02-06 11:35:48 tjc Exp $
**/
package uk.ac.sanger.artemis.components;
......@@ -77,7 +77,7 @@ import javax.swing.*;
* FeatureEdit class
*
* @author Kim Rutherford
* @version $Id: FeatureEdit.java,v 1.65 2009-01-15 10:31:02 tjc Exp $
* @version $Id: FeatureEdit.java,v 1.66 2009-02-06 11:35:48 tjc Exp $
**/
public class FeatureEdit extends JPanel
implements EntryChangeListener, FeatureChangeListener
......@@ -591,7 +591,11 @@ public class FeatureEdit extends JPanel
{
public void actionPerformed(ActionEvent e)
{
new TransferAnnotationTool(getFeature(), entry_group);
java.util.List geneNames = null;
if(matchForm != null)
geneNames = matchForm.getGeneNameList();
new TransferAnnotationTool(getFeature(), entry_group, geneNames);
}
});
......
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