Skip to content
Snippets Groups Projects
Commit b5e3b66c authored by Syed Hossain's avatar Syed Hossain Committed by Natalie Willhoft
Browse files

Fix variable names

parent 9982d81e
No related branches found
No related tags found
No related merge requests found
......@@ -442,13 +442,13 @@ sub _configure_plugins {
}
# CADD - check if species is pig and provide appropriate file based on that
elsif(lc $module eq 'CADD' && $c->stash->{species} eq "sus_scrofa"){
next unless $param_clone =~ /^snv_pig=/;
next unless $param =~ /^snv_pig=/;
my $param_aux = $param;
$param_aux =~ s/snv_pig=//;
$param_clone = 'snv=' . $param_aux;
$param = 'snv=' . $param_aux;
push @params, $param_clone;
push @params, $param;
}
# other params, such as file paths, get passed from the config
else {
......
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