-
Notifications
You must be signed in to change notification settings - Fork 12
Meaning of ''sufficient" in EV tag (Documentation). #30
Comments
yes that is correct |
@happy-lorna 👍 |
@happy-lorna @rdfinn
From GenProp GenProp0877
Do you need both From GenProp GenProp0885
Do you need only one If you have a hit for I have a dataset where we have a hit for
Does your Perl code ignore the use of sufficient? |
@SilasK This is related to Micromeda/pygenprop#32. This may explain some of the discrepancies between assignments by Pygenprop and |
Hi Lee, |
@happy-lorna My apologies I was off the grid for Christmas. The proteins can be found at the very bottom of the Gist below ( |
@happy-lorna Can you reopen this issue so other people can see it? |
I also found the following in if($evObj->gp){
if(defined($self->get_defs->{ $evObj->gp })){
# For properties a PARTIAL or YES result is considered success
if( $self->get_defs->{ $evObj->gp }->result eq 'YES' or
$self->get_defs->{ $evObj->gp }->result eq 'PARTIAL' ){
$succeed++;
}elsif($self->get_defs->{ $evObj->gp }->result eq 'UNTESTED'){
$step->evaluated(0);
#Todo - need to check this bit. Some times a step can have two evidences, so need to check this is okay.
}
}
}elsif($evObj->interpro){
#Need to annotated the sequences
if(!$self->annotated){
$self->annotate_sequences
}
#See if the accession has been found
if($self->get_family( $evObj->accession ) ){
$succeed++;
last EV;
}
}else{
die "unknown evidence object type\n";
} Line Link:
|
Hi Lee, There does seem to be a problem with how the code is assessing these "non-sufficient" evidences. I have asked @rdfinn to investigate (specifically the comment line you highlight which looks likely to be indicating the issue), but he is pretty busy just now so wont get to it until the middle of next week. I will follow up here after that. |
Hi Lee, Sorry this has been languishing on the todo pile. Thank you for bringing to our attention and this is now fixed in the code. We have some other loose ends to finish up, but should then be able to push a release by the end of the year or early Jan. Rob |
Given the line
EV IPR010479; PF06393; sufficient;
. Does the wordsufficient
mean that piece of evidence (given that the step has multiple pieces of evidence) is sufficient on its own to prove that the step exists?The text was updated successfully, but these errors were encountered: