perl 常见错误提示信息
=========================
$animal = "camel"
syntax error at ReadCount.V3.pl line 15, near "my "
Global symbol "%RnaEdits" requires explicit package name at ReadCount.V3.pl line 15.
Execution of ReadCount.V3.pl aborted due to compilation errors.
--------------------------------------
To declare your variable, change this line:
$animal = "camell";
To:
my $animal = "camell";
=========================