/usr/share/perl5/Circos/Rule.pm is in circos 0.64-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 | package Circos::Rule;
=pod
=head1 NAME
Circos::Rule - routines for handling rules in Circos
=head1 SYNOPSIS
This module is not meant to be used directly.
=head1 DESCRIPTION
Circos is an application for the generation of publication-quality,
circularly composited renditions of genomic data and related
annotations.
Circos is particularly suited for visualizing alignments, conservation
and intra and inter-chromosomal relationships. However, Circos can be
used to plot any kind of 2D data in a circular layout - its use is not
limited to genomics. Circos' use of lines to relate position pairs
(ribbons add a thickness parameter to each end) is effective to
display relationships between objects or positions on one or more
scales.
All documentation is in the form of tutorials at L<http://www.circos.ca>.
=cut
# -------------------------------------------------------------------
use strict;
use warnings;
use base 'Exporter';
our @EXPORT = qw();
use Carp qw( carp confess croak );
use Data::Dumper;
use FindBin;
use GD::Image;
use Params::Validate qw(:all);
use lib "$FindBin::RealBin";
use lib "$FindBin::RealBin/../lib";
use lib "$FindBin::RealBin/lib";
use Circos::Configuration; # qw(%CONF $DIMS);
use Circos::Constants;
use Circos::DataPoint;
use Circos::Debug;
use Circos::Error;
use Circos::Expression;
use Circos::Utils;
use Memoize;
for my $f ( qw() ) {
memoize($f);
}
sub make_rule_list {
my $conf_leaf = shift;
my @rules = make_list( $conf_leaf );
# first, grep out rules that have an importance value
my @rules_ordered = sort { $b->{importance} <=> $a->{importance} } grep(defined $_->{importance}, @rules);
# then add all remaining rules without importance
push @rules_ordered, grep(! defined $_->{importance}, @rules);
@rules = @rules_ordered;
# sanity checks
# - condition must exist
# - assign tag automatically, if does not exist
# - create a list of parameters that are being readjusted
for my $i (0..@rules-1) {
my $rule = $rules[$i];
if(! defined $rule->{condition} && ! defined $rule->{flow}) {
$Data::Dumper::Sortkeys = 1;
$Data::Dumper::Terse = 1;
fatal_error("rule","no_condition_no_flow",Dumper($rule));
}
if(! defined $rule->{tag}) {
my $tag = $i;
printdebug_group("rule","assigning auto rule tag [$tag]");
$rule->{tag} = $tag;
}
$rule->{__param} ||= {};
for my $key (keys %$rule) {
next if grep($key eq $_, qw(condition importance tag flow __param));
$rule->{__param}{$key}++;
}
}
return @rules;
}
sub apply_rules_to_track {
my ($track, $rules, $param_path) = @_;
my $goto_rule_tag;
my $have_restarted;
POINT:
for my $point ( @{ $track->{__data} } ) {
RULE:
for my $rule ( @$rules ) {
if (defined $goto_rule_tag) {
if ($rule->{tag} ne $goto_rule_tag) {
printdebug_group("rule","going to rule [$goto_rule_tag] and skipping rule [$rule->{tag}]");
next RULE;
} else {
printdebug_group("rule","found rule [$goto_rule_tag]");
$goto_rule_tag = undef;
}
}
my $condition = $rule->{condition};
my @flows = make_list(seek_parameter( "flow", $rule, $track->{rules} ));
my $pass;
if(ref $condition eq "ARRAY") {
my $pass_iter = 1;
for my $c (@$condition) {
$pass_iter &&= test_rule( $point, $c, [ $point, @$param_path ] ) if defined $c;
}
$pass = $pass_iter;
} else {
$pass = test_rule( $point, $condition, [ $point, @$param_path ] ) if defined $condition;
}
apply_rule_to_point($point,$rule,$param_path) if $pass;
# if flow is not defined
if (! @flows) {
if ($pass) {
printdebug_group("rule","quitting rule chain");
last RULE;
} else {
printdebug_group("rule","trying next rule");
next RULE;
}
} else {
for my $flow (@flows) {
my @flow_tok = split(" ",$flow);
# if the flow string ends with "if true" or "if false" register
# whether the flow command should be executed based on whether
# the rule has passed
printdebug_group("rule","parsing flow",$flow);
my $toggle_flow;
if ($flow =~ /\s+if\s+/) {
if ($flow =~ /\s+true\s*$/) {
$toggle_flow = $pass ? 1 : 0;
} elsif ($flow =~ /\s+false\s*$/) {
$toggle_flow = !$pass ? 1 : 0;
} else {
fatal_error("rules","flow_syntax_error",$flow);
}
} else {
# by default the flow will trigger
$toggle_flow = 1;
}
printdebug_group("rule","rule pass",$pass,"flow",$toggle_flow);
if ($flow =~ /^stop/) {
if ($toggle_flow) {
last RULE;
}
} elsif ($flow =~ /^goto/) {
my (undef,$tag,$if,$ifcond) = @flow_tok;
if ($toggle_flow) {
$goto_rule_tag = $tag;
printdebug_group("rule","goto to rule [$tag]");
goto RULE;
}
} elsif ($flow =~ /^restart/) {
if ($toggle_flow) {
if (!$rule->{restart}) {
$rule->{restart} = 1;
$have_restarted = 1;
printdebug_group("rule","restarting rule chain");
goto RULE;
} else {
printdebug_group("rule","cannot restart from rule more than once - quitting rule chain");
last RULE;
}
}
} elsif ($flow =~ /^continue/) {
if ($toggle_flow) {
printdebug_group("rule","continuing to next rule");
next RULE;
}
} else {
fatal_error("rules","flow_syntax_error",$flow,$rule->{tag});
}
}
}
}
if (defined $goto_rule_tag) {
fatal_error("rule","bad_tag",$goto_rule_tag);
}
# clear restart flags
if ($have_restarted) {
map { delete $_->{restart} } @$rules;
}
}
}
sub apply_rule_to_point {
my ($point,$rule,$param_path) = @_;
my %data_field = (chr=>1,start=>1,end=>1,value=>1,rev=>1);
for my $param ( keys %{ $rule->{__param} } ) {
my $value = $rule->{$param};
printdebug_group("rule","applying rule var",$param,"value",$value);
if ( $value =~ /^eval\(\s*(.*)\s*\)\s*$/ ) {
my $expr = $1;
$value = Circos::Expression::eval_expression( $point, $expr, [ $point, @$param_path ] );
}
# filters
if ( $param eq "minsize") {
Circos::DataPoint::apply_filter("minsize",$value,$point);
} else {
# parameters
if ( $value eq "undef" ) {
if ( $param =~ /^(start|end)\d*$/ ) {
fatal_error("rule","cannot_undefine",$param);
} else {
delete $point->{data}[0]{ $param };
}
} else {
my $apply_value = 0;
if ( not_defined_or_one( $rule->{overwrite} ) ) {
$apply_value = 1;
} else {
# do not overwrite - check that param does not exist
if($data_field{$param}) {
$apply_value = 1 if ! exists $point->{data}[0]{$param};
} else {
$apply_value = 1 if ! exists $point->{param}{$param};
}
}
if($apply_value) {
if($data_field{$param}) {
$point->{data}[0]{$param} = $value;
} else {
$point->{param}{$param} = $value;
}
}
}
}
# if ( $param eq "value" || $param eq "start" || $param eq "end" ) {
# if($value eq "undef") {
# delete $point->{data}[0]{ $param };
# } else {
# $point->{data}[0]{ $param } = $value;
# }
# } else {
# if ( not_defined_or_one( $rule->{overwrite} ) ) {
# # overwrite is default
# if($value eq "undef") {
# delete $point->{param}{ $param };
# } else {
# $point->{param}{ $param } = $value;
# }
# } elsif ( ! exists $point->{param}{$param} ) {
# # overwrite only if parameter doesn't exist
# if($value ne "undef") {
# $point->{param}{$param} = $value;
# }
# }
# }
}
}
# -------------------------------------------------------------------
sub test_rule {
my ( $point, $condition, $param_path ) = @_;
for my $c (make_list($condition)) {
my $cfmt = Circos::Expression::format_condition($c);
my $pass = Circos::Expression::eval_expression($point,$cfmt,$param_path);
printdebug_group("rule","condition [$condition] pass",$pass ? "PASS" : "FAIL");
return 0 if ! $pass;
}
return 1;
}
1;
|