Motivation
The ICORE (International CORE Conference Rankings) is a ranking of computer science conferences (A*, A, B, C). In JabRef, we want to add a new field that stores the ICORE ranking of a given conference. Users often want to know how highly ranked a paper's venue is. You can search conferences manually via the ICORE website, but this should be automated.
Example search result
📌 Goal
When a BibTeX entry includes a conference title like:
ACIS Conference on Software Engineering Research, Management and Applications (SERA)
The tool should:
- Extract the acronym in parentheses — SERA.
- Search the ICORE rankings for this acronym.
- If a match is found (e.g. SERA has rank C), populate the new icoreranking field with that value.
- If no exact match is found, fall back to fuzzy matching using similarity scoring (> 0.9).
🛠️ Tasks
Test end-to-end behavior via TDD.
📚 Helpful resources
Motivation
The ICORE (International CORE Conference Rankings) is a ranking of computer science conferences (A*, A, B, C). In JabRef, we want to add a new field that stores the ICORE ranking of a given conference. Users often want to know how highly ranked a paper's venue is. You can search conferences manually via the ICORE website, but this should be automated.
Example search result
📌 Goal
When a BibTeX entry includes a conference title like:
ACIS Conference on Software Engineering Research, Management and Applications (SERA)The tool should:
🛠️ Tasks
CSVfileTest end-to-end behavior via TDD.
📚 Helpful resources