Search in sources :

Example 1 with MatchTest

use of org.edamontology.edammap.core.benchmarking.MatchTest in project edammap by edamontology.

the class Txt method out.

static void out(QueryType type, PrintStream ps, Map<EdamUri, Concept> concepts, List<Query> queries, List<MappingTest> mappings) throws IOException {
    ps.print("query_id");
    ps.print(SEP);
    ps.print("query_name");
    ps.print(SEP);
    ps.print("edam_branch");
    ps.print(SEP);
    ps.print("edam_uri");
    ps.print(SEP);
    ps.print("edam_label");
    ps.print(SEP);
    ps.print("edam_obsolete");
    ps.print(SEP);
    ps.print("best_one_query");
    ps.print(SEP);
    ps.print("best_one_edam");
    ps.print(SEP);
    ps.print("best_one_score");
    ps.print(SEP);
    ps.print("without_path_score");
    ps.print(SEP);
    ps.print("score");
    ps.print(SEP);
    ps.print("test");
    ps.println();
    for (int i = 0; i < queries.size(); ++i) {
        Query query = queries.get(i);
        MappingTest mapping = mappings.get(i);
        for (Branch branch : Branch.values()) {
            for (MatchTest matchTest : mapping.getMatches(branch)) {
                Match match = matchTest.getMatch();
                Concept concept = concepts.get(match.getEdamUri());
                ps.print(query.getId() != null ? query.getId() : "");
                ps.print(SEP);
                ps.print(query.getName() != null ? query.getName() : "");
                ps.print(SEP);
                ps.print(branch);
                ps.print(SEP);
                ps.print(match.getEdamUri());
                ps.print(SEP);
                ps.print(concept.getLabel());
                ps.print(SEP);
                ps.print(concept.isObsolete());
                ps.print(SEP);
                ps.print(match.getQueryMatch().getType().name());
                ps.print(SEP);
                ps.print(match.getConceptMatch().getType().name());
                ps.print(SEP);
                ps.print(match.getBestOneScore() > -1 ? match.getBestOneScore() : "");
                ps.print(SEP);
                ps.print(match.getWithoutPathScore() > -1 ? match.getWithoutPathScore() : "");
                ps.print(SEP);
                ps.print(match.getScore());
                ps.print(SEP);
                ps.print(matchTest.getTest().name());
                ps.println();
            }
        }
    }
}
Also used : Concept(org.edamontology.edammap.core.edam.Concept) Query(org.edamontology.edammap.core.query.Query) Branch(org.edamontology.edammap.core.edam.Branch) MappingTest(org.edamontology.edammap.core.benchmarking.MappingTest) MatchTest(org.edamontology.edammap.core.benchmarking.MatchTest) Match(org.edamontology.edammap.core.mapping.Match)

Example 2 with MatchTest

use of org.edamontology.edammap.core.benchmarking.MatchTest in project edammap by edamontology.

the class Report method writeMatches.

private static void writeMatches(ScoreArgs scoreArgs, Writer writer, Map<EdamUri, Concept> concepts, Query query, List<Publication> publications, MappingTest mapping) throws IOException {
    for (Branch branch : Branch.values()) {
        List<MatchTest> matches = mapping.getMatches(branch);
        if (matches.isEmpty())
            continue;
        writer.write("\t\t<div class=\"branch " + branch + "\">\n");
        writer.write("\t\t\t<h3>" + branch + "</h3>\n");
        for (MatchTest matchTest : matches) {
            Match match = matchTest.getMatch();
            writer.write("\t\t\t<div class=\"match " + matchTest.getTest().name() + "\">\n");
            writer.write("\t\t\t\t<div class=\"match-div\">\n");
            writeConcept(writer, concepts, match);
            writeQueryMatch(writer, query, publications, match.getQueryMatch(), true);
            writer.write("\t\t\t\t\t<div class=\"type\">" + match.getConceptMatch().getType() + "</div>\n");
            writeScore(scoreArgs, writer, branch, match);
            writer.write("\t\t\t\t</div>\n");
            List<MatchAverageStats> matchAverageStats = match.getMatchAverageStats();
            if (matchAverageStats != null && !matchAverageStats.isEmpty()) {
                // TODO
                Concept concept = concepts.get(match.getEdamUri());
                writer.write("\t\t\t\t<div class=\"details-div\">\n");
                writer.write("\t\t\t\t\t<div class=\"details\" tabindex=\"0\"></div>\n");
                writer.write("\t\t\t\t\t<div class=\"details-box\" tabindex=\"0\">\n");
                for (MatchAverageStats mas : matchAverageStats) {
                    writer.write("\t\t\t\t\t\t<div><div>");
                    writeQueryMatch(writer, query, publications, mas.getQueryMatch(), false);
                    writer.write("<br>" + percent(mas.getQueryMatch().getScore()) + "</div><div>");
                    ConceptMatchType conceptType = mas.getConceptMatch().getType();
                    writer.write("<span>" + conceptType + "</span>");
                    if (conceptType != ConceptMatchType.definition && conceptType != ConceptMatchType.comment && conceptType != ConceptMatchType.none) {
                        writer.write("<br>" + conceptMatchString(concept, mas.getConceptMatch()));
                    }
                    writer.write("<br>" + percent(mas.getConceptMatch().getScore()) + "</div><div>");
                    writer.write("<span>" + percent(mas.getScore()) + "</span></div></div>\n");
                }
                writer.write("\t\t\t\t\t</div>\n");
                writer.write("\t\t\t\t</div>\n");
            }
            writer.write("\t\t\t</div>\n");
        }
        writer.write("\t\t</div>\n");
    }
}
Also used : Concept(org.edamontology.edammap.core.edam.Concept) MatchAverageStats(org.edamontology.edammap.core.mapping.MatchAverageStats) Branch(org.edamontology.edammap.core.edam.Branch) ConceptMatchType(org.edamontology.edammap.core.mapping.ConceptMatchType) MatchTest(org.edamontology.edammap.core.benchmarking.MatchTest) QueryMatch(org.edamontology.edammap.core.mapping.QueryMatch) Match(org.edamontology.edammap.core.mapping.Match) ConceptMatch(org.edamontology.edammap.core.mapping.ConceptMatch)

Aggregations

MatchTest (org.edamontology.edammap.core.benchmarking.MatchTest)2 Branch (org.edamontology.edammap.core.edam.Branch)2 Concept (org.edamontology.edammap.core.edam.Concept)2 Match (org.edamontology.edammap.core.mapping.Match)2 MappingTest (org.edamontology.edammap.core.benchmarking.MappingTest)1 ConceptMatch (org.edamontology.edammap.core.mapping.ConceptMatch)1 ConceptMatchType (org.edamontology.edammap.core.mapping.ConceptMatchType)1 MatchAverageStats (org.edamontology.edammap.core.mapping.MatchAverageStats)1 QueryMatch (org.edamontology.edammap.core.mapping.QueryMatch)1 Query (org.edamontology.edammap.core.query.Query)1