WHREL_SUBJ WH relative clauses (subject position)
Definition
Relative clauses introduced by WH-words where the relative pronoun serves as subject.
Detection Rules
WH relative pronoun as subject of verb in relative clause.
semgrex{pos:/WDT|WP/}=wh <nsubj {pos:/VB.*/}=verb
pybiber
WH relative (subject): WH-word with nsubj dep, preceded by N/CD/DT, with 2-back token not ask/tell. Second pattern handles intervening punctuation (“the man, who...”).
p1
cql[lemma!="ask|tell"] [pos="NN.*|CD|DT"] [pos="W.*" & word!="that" & dep="nsubj.*"]
p2
cql[lemma!="ask|tell" & pos="NN.*|CD|DT"] [pos="\\.|,|:|;|-LRB-|-RRB-"] [word="who" & dep="nsubj.*"]
combine: p1 | p2
Normalization
Per finite_verbs
Examples
the hobbit who found it
Sources
- biber_1988 — Biber, Douglas (1988) : Variation across Speech and Writing
- pybiber — Brown, David West & Reinhart, Alex (2026) : pybiber — Python package for linguistic feature extraction and Multi-Dimensional Analysis
Notes
Not separately in MFTE. Needs dependency parsing.