Infra-classe

Multi tool use
En biologie, une infra-classe est un niveau intermédiaire, immédiatement inférieur à la sous-catégorie sous-classe de la classification classique des êtres vivants (voir systématique).
Les rangs taxonomiques[1] utilisés en systématique pour la classification hiérarchique du monde vivant sont les suivants (par ordre décroissant) :
- Super-règne, Empire, Domaine (Superregnum, Imperium, Dominium)
Règne (Regnum)
- Sous-règne (Subregnum)
- Rameau (Ramus, « branch » en anglais)
Infra-règne (Infraregnum)
- Super-embranchement, Super-division (Superphylum, Superdivisio)
Embranchement, Division (Phylum, Divisio)[2]
Sous-embranchement, Sous-division (Subphylum, Subdivisio)
- Infra-embranchement (Infraphylum)
Micro-embranchement (Microphylum)
- Super-classe (Superclassis)
Classe (Classis)
- Sous-classe (Subclassis)
Infra-classe (Infraclassis)
- Super-ordre (Superordo)
Ordre (Ordo)
- Sous-ordre (Subordo)
- Infra-ordre (Infraordo)
Micro-ordre (Microordo)
- Super-famille (Superfamilia)
Famille (Familia)
- Sous-famille (Subfamilia)
- Tribu (Tribus)
Sous-tribu (Subtribus)
Genre (Genus)
- Sous-genre (Subgenus)
- Section (Sectio)
Sous-section (Subsectio)
Espèce (Species)
- sous-espèce (subspecies) - dernier rang zoologique officiel[3]
- variété (varietas) - race étant un rang zoologique informel[3]
- sous-variété (subvarietas) - sous-race étant un rang zoologique informel[3]
- forme (forma)
- sous-forme (subforma)
Voir aussi |
- Classification classique
- Règne végétal
- Règne animal
Références |
↑ En gras les 7 rangs principaux (RECOFGE, sigle mnémotechnique pour Règne/Embranchement/Classe/Ordre/Famille/Genre/Espèce), en maigre les rangs secondaires, en romaine les noms vulgaires, en italique les noms latins.
↑ Un embranchement en zoologie, ou division en botanique, est traditionnellement caractérisé par une description schématique appelée « plan d'organisation ».
↑ a b et cLes taxons aux rangs de race et de sous-race (animaux domestiques principalement) n'ont pas de noms scientifiques. Ils ne sont pas régis par le Code international de nomenclature zoologique (CINZ).
Taxonomie
|
.mw-parser-output .sep-liste{font-weight:bold}
Empire / Domaine / Super-règne · Règne · Sous-règne · Rameau · Infra-règne · Super-embranchement · Embranchement / Division · Sous-embranchement · Infra-embranchement · Super-classe · Classe · Sous-classe · Infra-classe · Super-ordre · Ordre · Sous-ordre · Infra-ordre · Super-famille · Famille · Sous-famille · Tribu · Genre · Sous-genre · Section · Sous-section · Série · Espèce · Sous-espèce · Variété ou Race · Forme ou Type
|
Taxon · Rang taxonomique · Clade · Cladistique · Nomenclature · Nom binominal · Nom sanctionné · Systématique · Classification scientifique des espèces · Classification classique · Classification phylogénétique · Systématique évolutionniste
|
Portail de la biologie
cnfafDiAOu6zh0Zv9,zxQ
Popular posts from this blog
up vote
1
down vote
favorite
I am using openpyxl for parsing .xlsm files, and pytest for testing. When I open a file, I get the: OpenPyxl -> UserWarning: Data Validation extension is not supported and will be removed That is not really a problem bcs. program works and I can't change the .xlsm file to fix that. But... When I run pytest with something like: def test_wrong_file_format(): assert check_excel(open_excel('file.xlsm')) == True I will get the warning i mentioned altought check_excel(open_excel('file.xlsm')) returns True and the test should suceed... Is there a nice way to tell the pytest that "It's not a bug it's a feature" and tests should pass even when they get this warning? Is there other way than using something like: with pytest.warns(UserWarning): ...
0
I have column SubToBind that shows current year ratio and column PY SubToBind which shows previous year ratio. How can I simply create a card that would be displaying them both in a nice way? Something like that: I cannot achieve that with regular card, I also tried Card with States by OKViz but also unable to see both values. In KPI visual - I dont like the word "Goal", it will confuse end users. Are there any cards or other visuals that would do the job? Thanks
powerbi dax powerbi-embedded
share | improve this question
edited Jun 11 '18 at 20:11
Oleg
...
up vote
-2
down vote
favorite
I need to write a script that will look through a folder and strip out the text from a string of an image. image-w-inch-bob-bob-bob-bob-8820-AV1.jpg image-w-inch-bob-bob-bob-bob-8820-AV2.jpg image-w-inch-bob-bob-bob-bob-8820-AV3.jpg image-w-inch-bob-bob-bob-bob-8820-AV4.jpg image-w-inch-bob-bob-bob-bob-8820-AV5.jpg image-w-inch-bob-bob-bob-bob-8820-AV6.jpg I need this to be renamed to 8820-AV1.jpg 8820-AV2.jpg 8820-AV3.jpg 8820-AV4.jpg 8820-AV5.jpg 8820-AV6.jpg Does anyone know of a script like this?
python linux bash
share | improve this question
edited Nov 21 at 22:22
...