Skip to content

Commit

Permalink
Fixed an issue with the evalue_num field in the digs_results table, w…
Browse files Browse the repository at this point in the history
…hich was set to an integer type instead of a float.
  • Loading branch information
robjgiff committed Sep 27, 2023
1 parent 1420030 commit a8c52f9
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions modules/DIGS/ScreeningDB.pm
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ sub create_digs_results_table {
`orientation` varchar(100) NOT NULL default '0',
`bitscore` int(11) NOT NULL default '0',
`identity` float NOT NULL default '0',
`evalue_num` int(11) NOT NULL default '0',
`evalue_num` float NOT NULL default '0',
`evalue_exp` int(11) NOT NULL default '0',
`subject_start` int(11) NOT NULL default '0',
`subject_end` int(11) NOT NULL default '0',
Expand Down Expand Up @@ -583,17 +583,17 @@ sub create_loci_table {
`assigned_gene` varchar(100) NOT NULL default '0',
`subject_start` int(11) NOT NULL default '0',
`subject_end` int(11) NOT NULL default '0',
`query_start` int(11) NOT NULL default '0',
`query_end` int(11) NOT NULL default '0',
`align_len` int(11) NOT NULL default '0',
`bitscore` float NOT NULL default '0',
`identity` float NOT NULL default '0',
`evalue_num` float NOT NULL default '0',
`evalue_exp` int(11) NOT NULL default '0',
`gap_openings` int(11) NOT NULL default '0',
`mismatches` int(11) NOT NULL default '0',
`subject_end` int(11) NOT NULL default '0',
`query_start` int(11) NOT NULL default '0',
`query_end` int(11) NOT NULL default '0',
`align_len` int(11) NOT NULL default '0',
`bitscore` float NOT NULL default '0',
`identity` float NOT NULL default '0',
`evalue_num` float NOT NULL default '0',
`evalue_exp` int(11) NOT NULL default '0',
`gap_openings` int(11) NOT NULL default '0',
`mismatches` int(11) NOT NULL default '0',
`locus_structure` text NOT NULL,
`sequence_length` int(11) NOT NULL default '0',
Expand Down

0 comments on commit a8c52f9

Please sign in to comment.