Skip to content
Snippets Groups Projects
Commit c2e391cd authored by Glenn Proctor's avatar Glenn Proctor
Browse files

regulatory_feature_object now has influence column as well

parent 2fec6d35
No related branches found
No related tags found
No related merge requests found
......@@ -125,8 +125,10 @@ while (<FILE>) {
# for miRNA_target (and possibly others) where individual features don't
# have a unique name, create a composite one. Also set influence for each type.
my $feature_name;
my $influence;
if ($feature =~ /miRNA_target/i) {
$feature_name = $id .":" . $seq;
$influence = "negative";
}
print STDERR "No feature name for $seq of type $feature on $id.\n" if (!$feature_name);
......@@ -149,6 +151,7 @@ while (<FILE>) {
$rr_obj_sth->execute($rr_id,
$ensembl_type,
$ensembl_object->dbID(),
$influence,
""); # no evidence yet
$count++;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment