Skip to content
Snippets Groups Projects
Commit f943fb26 authored by Andy Yates's avatar Andy Yates
Browse files

Adding softmasked as a type of file and improving error reporting

parent c7a43181
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,12 @@ sub write_output {
sub get_dna_files {
my ($self) = @_;
my $path = $self->fasta_path('dna');
my $regex = $self->param($self->param('data_type'))->{regex};
my $data_type = $self->param('data_type');
my $regex_hash = $self->param($data_type);
if(! $regex_hash ) {
throw "We do not have an entry for the data_type $data_type in our regex lookup hash. Edit this module";
}
my $regex = $regex_hash->{regex};
my $filter = sub {
my ($filename) = @_;
return ($filename =~ $regex && $filename !~ /\.toplevel\./) ? 1 : 0;
......
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