Skip to content

Commit

Permalink
docs: update fusionreport score calculation documentation
Browse files Browse the repository at this point in the history
- Add detailed explanation of new scoring system
- Document 80/20 weight distribution between tool detection and database hits
- Add formula for score calculation
  • Loading branch information
dacotah03 committed Feb 21, 2025
1 parent b9d8337 commit 659fa0b
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions docs/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,13 +264,17 @@ The weights for databases are as follows:
- MITELMAN (50)
- FusionGDB2 (0)

The final formula for calculating score is:
The score is calculated using two components:

$$
score = 0.5 * \sum_{tool}^{tools} f(fusion, tool)*w(tool) + 0.5 * \sum_{db}^{dbs} g(fusion, db)*w(db)
$$
1. Tool Detection (80% of total score)
- Calculated as: (number of tools detecting the fusion) / (number of tools actually used)
- This reflects how many of the active tools found the fusion

All tools have the same weight.
2. Database Hits (20% of total score)
- Based on database matches using weights above
- Calculated as: (number of database hits) / (total possible database hits)

Final score = (0.8 × Tool Detection Score) + (0.2 × Database Hits Score)

### Salmon

Expand Down

0 comments on commit 659fa0b

Please sign in to comment.