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

do not have cdna as a genomic source to index

parent 8ec1d6ba
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ sub fetch_input {
$assembly = join(q{.}, @split_name);
my $molecule = ( $type =~ /na/ ) ? 'dna' : 'pep'; # if it has an na in there then it's DNA
my $blast_type = ($type =~ /dna/ ) ? 'genomic' : 'genes'; # if it was DNA then it's genomic
my $blast_type = ($type =~ /dna/ && $type ne 'cdna' ) ? 'genomic' : 'genes'; # if it was DNA then it's genomic
$self->param('species', lc($species));
$self->param('molecule', $molecule);
......
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