Cistus sintenisii
Cistus sintenisii is a shrubby species of flowering plant in the family Cistaceae. It was named in honor of Paul Sintenis.
Cistus sintenisii | |
---|---|
Scientific classification | |
Kingdom: | Plantae |
Clade: | Tracheophytes |
Clade: | Angiosperms |
Clade: | Eudicots |
Clade: | Rosids |
Order: | Malvales |
Family: | Cistaceae |
Genus: | Cistus |
Species: | C. sintenisii |
Binomial name | |
Cistus sintenisii Litard.[1] | |
Synonyms[1] | |
|
Phylogeny
Cistus sintenisii belongs to the white and whitish pink flowered clade of Cistus species.
Species-level cladogram of Cistus species. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Species-level cladogram of Cistus species, based on plastid and nuclear DNA sequences.[2][3][4][5] |
gollark: These are done → muahahaha.
gollark: ... also array literals, bee their bad docs.
gollark: Please also give me write access to the repo.
gollark: Oh, right, array indexing.
gollark: ```python# parsita-based pseudocode syntax parserfrom stmt import *from parsita import *from parsita.util import constantdef compose(f, g): return lambda x: f(g(x))def map_expr(x): start, end = x if end == "": return start return Op([start, end[1]], end[0])def map_unop_expr(x): return Op(x[1], x[0])def aliases(name, aliases): p = lit(name) for alias in aliases: p |= (lit(alias) > (lambda _: name)) return pclass ExprParser(TextParsers): ε = lit("") IntLit = reg("\-?[0-9]+") > compose(IntLit, int) StrLit = "'" >> reg("[^']*") << "'" > StrLit # TODO escapes (not in "spec" but could be needed) FloatLit = reg("\-?[0-9]+\.[0-9]+") > compose(FloatLit, float) Identifier = reg("[a-zA-Z_]+[a-zA-Z_0-9]*") > Var BracketedExpr = "(" >> Expr << ")" UnaryOperator = lit("NOT") Start = FloatLit | StrLit | IntLit | BracketedExpr | (UnaryOperator & Expr > map_unop_expr) | Identifier # avoid left recursion problems by not doing left recursion # AQA pseudocode does not appear to have a notion of "operator precedence", simplifying parsing logic nicely BinaryOperator = aliases("≤", ["<="]) | aliases("≠", ["!="]) | aliases("≥", [">="]) | lit("DIV") | lit("MOD") | lit("AND") | lit("OR") | reg("[+/*\-=<>]") End = (BinaryOperator & Expr) | ε Expr = (Start & End) > map_exprparse = ExprParser.Expr.parsex = parse("1+2+3 != 6 AND NOT 4 AND x + y")if isinstance(x, Failure): print(x.message)else: print(x.value)```
References
- "Cistus sintenisii", The Plant List, retrieved 2015-03-02
- Guzmán, B. & Vargas, P. (2005). "Systematics, character evolution, and biogeography of Cistus L. (Cistaceae) based on ITS, trnL-trnF, and matK sequences". Molecular Phylogenetics and Evolution. 37 (3): 644–660. doi:10.1016/j.ympev.2005.04.026. PMID 16055353.
- Guzmán, B. & Vargas, P. (2009). "Historical biogeography and character evolution of Cistaceae (Malvales) based on analysis of plastid rbcL and trnL-trnF sequences". Organisms Diversity & Evolution. 9 (2): 83–99. doi:10.1016/j.ode.2009.01.001.
- Guzman, B.; Lledo, M.D. & Vargas, P. (2009). "Adaptive Radiation in Mediterranean Cistus (Cistaceae)". PLOS ONE. 4 (7): e6362. Bibcode:2009PLoSO...4.6362G. doi:10.1371/journal.pone.0006362. PMC 2719431. PMID 19668338.
- Civeyrel, Laure; Leclercq, Julie; Demoly, Jean-Pierre; Agnan, Yannick; Quèbre, Nicolas; Pélissier, Céline & Otto, Thierry (2011). "Molecular systematics, character evolution, and pollen morphology of Cistus and Halimium (Cistaceae)". Plant Systematics and Evolution. 295 (1–4): 23–54. doi:10.1007/s00606-011-0458-7.CS1 maint: ref=harv (link)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.