| 12345678910111213141516171819202122232425262728293031323334353637 |
- from typing import Tuple
- def get_supported_labels() -> Tuple[
- str, str, str, str, str, str, str, str, str, str, str, str, str
- ]:
- """
- Returns
- -------
- tuple
- Supported labels.
- """
- return (
- "SLC",
- "SEG",
- "REP",
- "AVG",
- "SET",
- "ECO",
- "PHS",
- "LIN",
- "PAR",
- "NAV",
- "REV",
- "SMS",
- "PMC",
- )
- def get_supported_rf_uses() -> Tuple[str, str, str, str, str]:
- """
- Returns
- -------
- tuple
- Supported RF use labels.
- """
- return "excitation", "refocusing", "inversion", "saturation", "preparation"
|