Information Retrieval and Database Concepts in Biomedicine

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/27

flashcard set

Earn XP

Description and Tags

A complete set of vocabulary flashcards covering Information Retrieval (IR) concepts, controlled terminologies, MeSH, DCMI, term weighting, and database architecture models based on the lecture transcript.

Last updated 9:29 PM on 9/25/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

28 Terms

1
New cards

Information Retrieval (IR)

The acquisition, organization, and searching of knowledge-based information derived from observational or experimental research.

2
New cards

Primary Knowledge-Based Information

Original research literature that appears in scientific journals, books, reports, and other primary sources.

3
New cards

Secondary Knowledge-Based Information

Literature that reviews, condenses, or synthesizes primary literature, including textbooks, monographs, and review articles.

4
New cards

Open Access Publishing

A publishing model where authors or their institutions pay production costs upfront after peer review, making the paper freely available on the Web upon publication.

5
New cards

Bibliographic Content

Information resources that contain citations and references to biomedical literature, such as MEDLINE, which indexes around 5,0005,000 scientific journals.

6
New cards

Aggregated Content

Information compiled from multiple content types for target audiences such as consumers or clinicians, exemplified by MedlinePlus.

7
New cards

Indexing

The process of assigning metadata to content to facilitate its retrieval.

8
New cards

Manual Indexing

The assignment of indexing terms and attributes to documents by human indexers, often using a controlled terminology and specific protocol.

9
New cards

Automated Indexing

Computer-driven indexing that typically defines all consecutive alphanumeric sequences between white space as distinct word indexing terms.

10
New cards

Controlled Terminology

A standardized set of terms that can be applied to information processing tasks such as indexing.

11
New cards

Vocabulary

A controlled terminology that explicitly defines its terms.

12
New cards

Thesaurus

A controlled terminology that contains term variants or synonyms and establishes hierarchical, synonym, or related relationships between terms.

13
New cards

Medical Subject Headings (MeSH)

The NLM controlled terminology containing over 26,00026,000 subject headings organized hierarchically into 1616 trees, used to manually index biomedical databases.

14
New cards

Dublin Core Metadata Initiative (DCMI)

An organization that specified a standard 1515-element metadata schema (e.g., DC.title, DC.creator, DC.subject) for Web resource creation and indexing.

15
New cards

Inverse Document Frequency (IDF)

A measure used in term weighting, calculated as IDF(term)=log⁡number of documents in databasenumber of documents with term+1IDF(\text{term}) = \log \frac{\text{number of documents in database}}{\text{number of documents with term}} + 1.

16
New cards

Term Frequency (TF)

A measure of term occurrences within a given document, defined as TF(term, document)=frequency of term in documentTF(\text{term, document}) = \text{frequency of term in document}.

17
New cards

Synonymy

An automated indexing limitation where different words or phrases express the exact same concept (e.g., "hypertension" and "high blood pressure").

18
New cards

Polysemy

An automated indexing limitation where a single word possesses multiple meanings depending on context (e.g., "lead" as a chemical element vs. an ECG lead).

19
New cards

Granularity

An automated indexing limitation occurring when queries and documents describe concepts at different levels within a hierarchical structure.

20
New cards

PubMed

The retrieval system hosted by the National Library of Medicine (NLM) to search MEDLINE and other biomedical bibliographic databases.

21
New cards

Database

A structured, indexed repository of information that enables entering, extraction, cross-referencing, and analysis of data.

22
New cards

Record (Entry)

A horizontal row in a database table representing a single complete entity or entry.

23
New cards

Field

A vertical column in a database table representing a specific category or attribute that holds a value.

24
New cards

Flat File Database

A single long text file where entries are separated by special characters (such as |) and fields by commas or tabs, requiring full file scans to search.

25
New cards

Relational Database

A database structure storing data across multiple tables linked to one another by a shared unique key field in each record.

26
New cards

Object-Oriented Database

A database structure where data is stored as objects combining data and routines, linked by pointers to represent complex hierarchical relationships.

27
New cards
<p>Information Retrieval Architecture</p>

Information Retrieval Architecture

The interactive framework connecting Queries and Content to Metadata through Retrieval and Indexing operations managed by a Search Engine.

28
New cards
<p>Relational Database Table Linkage</p>

Relational Database Table Linkage

The connection of separate database tables (such as protab1 and protab2) using a unique shared key field (such as Protein-code).