diff --git a/modules/Bio/EnsEMBL/Map/DBSQL/DitagFeatureAdaptor.pm b/modules/Bio/EnsEMBL/Map/DBSQL/DitagFeatureAdaptor.pm
index f181d8c43abd4a4af0d3b936b6ed7591fc8fa94d..a5a6917f203217090d4df10849ccca394049bc0e 100644
--- a/modules/Bio/EnsEMBL/Map/DBSQL/DitagFeatureAdaptor.pm
+++ b/modules/Bio/EnsEMBL/Map/DBSQL/DitagFeatureAdaptor.pm
@@ -463,13 +463,19 @@ TAG:
       throw(   "Object must be an Ensembl DitagFeature, "
              . "not a " . ref($ditag) );
     }
-
     if ( $ditag->is_stored($db) ) {
       warning(   "DitagFeature " . $ditag->dbID .
                  " is already stored in this database,".
                  " maybe you ned to use the update() method." );
       next TAG;
     }
+    if(!$ditag->ditag_id or !($self->db->get_DitagAdaptor->fetch_by_dbID($ditag->ditag_id))){
+      throw("DitagFeature must be supplied with the id of a corresponding Ditag object.");
+    }
+    if(!$ditag->ditag or !$ditag->ditag->isa("Bio::EnsEMBL::Map::Ditag")){
+      throw("DitagFeature must be linked to a valid Ditag object.");
+    }
+
 
 #    #check if more than x tags with this ditag id exist
 #    $sth3->execute( $ditag->ditag_id );
@@ -566,6 +572,13 @@ sub batch_store {
       throw(   "Object must be an Ensembl DitagFeature, "
              . "not a " . ref($ditag) );
     }
+    if(!$ditag->ditag_id or !($self->db->get_DitagAdaptor->fetch_by_dbID($ditag->ditag_id))){
+      throw("DitagFeature must be supplied with the id of a corresponding Ditag object.");
+    }
+
+    if(!$ditag->ditag or !$ditag->ditag->isa("Bio::EnsEMBL::Map::Ditag")){
+      throw("DitagFeature must be linked to a valid Ditag object.");
+    }
     if ( $ditag->is_stored($db) ) {
       warning(   "DitagFeature " . $ditag->dbID
                  . " is already stored in this database." );
diff --git a/modules/t/ditagFeatureAdaptor.t b/modules/t/ditagFeatureAdaptor.t
index 74da4c6314abca5d6d292d7c800defb7dba76362..240e4414f0f1095eb6442e89c6c31bad5b06141a 100644
--- a/modules/t/ditagFeatureAdaptor.t
+++ b/modules/t/ditagFeatureAdaptor.t
@@ -15,7 +15,7 @@ my $multi = Bio::EnsEMBL::Test::MultiTestDB->new();
 my $db    = $multi->get_DBAdaptor( 'core' );
 
 my $region        = '11';
-my $ditag_id      = 1;
+my $ditag_id      = 3278356;
 my $qstart        = 83225874;
 my $qend          = 83236347;
 my $qstrand       = -1;
@@ -56,7 +56,7 @@ my $feature = Bio::EnsEMBL::Map::DitagFeature->new(
 					-hit_start     => $tstart,
 					-hit_end       => $tend,
 					-hit_strand    => $tstrand,
-					-ditag_id      => $ditag_id,
+					-ditag_id      => undef,
 					-ditag_side    => $ditag_side,
 					-ditag_pair_id => $ditag_pair_id,
 					-cigar_line    => $cigar_line,
@@ -73,15 +73,35 @@ ok($feature && $feature->isa('Bio::EnsEMBL::Map::DitagFeature'));
 
 #hide the contents of ditag_feature table
 $multi->hide('core', 'ditag_feature');
+$multi->hide('core', 'ditag');
+
+#create a ditag object to attach to the ditagFeature object fist
+my $name      = "101A01-2";
+my $type      = "ZZ13";
+my $tag_count = 2;
+my $sequence  = "GAGAACTTGGACCGCAGAGAATACACACAAATCAAACC";
+my $new_ditag = Bio::EnsEMBL::Map::Ditag->new (
+                                               -name     => $name, 
+                                               -type     => $type,
+					       -count    => $tag_count,
+                                               -sequence => $sequence, 
+                                              );
+my @ditags = ( $new_ditag );
+$db->get_DitagAdaptor->store(\@ditags);
+
+#attach to ditagFeature
+$feature->ditag($new_ditag);
+$feature->ditag_id($new_ditag->dbID);
 
 $dfa->store($feature);
-ok($feature->dbID && $feature->adaptor == $dfa);
+ok(defined $feature->dbID && $feature->adaptor == $dfa);
 
 my $testfeature = $dfa->fetch_by_dbID($feature->dbID);
 ok($testfeature && $testfeature->isa('Bio::EnsEMBL::Map::DitagFeature'));
 
 #unhide table
 $multi->restore('core', 'ditag_feature');
+$multi->restore('core', 'ditag');
 
 ########
 # 5-11 #