Skip to content

Commit

Permalink
fixed previous problem with target field
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Bergquist committed Dec 31, 2016
1 parent dc8bb3b commit 77d95ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cafa_go_format_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
rc_field = re.compile("^RC=[0,1]\.[0-9][0-9]$")
go_field = re.compile("^GO:[0-9]{5,7}$")
# Fix to add EFI and HP
target_field = re.compile("^(MT|EFI)[0-9]{5,20}$")
target_field = re.compile("^(M|T|EFI)[0-9]{5,20}$")
#target_field = re.compile("^T[0-9]{5,20}$")
confidence_field = re.compile("^[0,1]\.[0-9][0-9]$")

Expand Down

0 comments on commit 77d95ac

Please sign in to comment.