supported_labels_rf_use.py 653 B

12345678910111213141516171819202122232425262728293031323334353637
  1. from typing import Tuple
  2. def get_supported_labels() -> Tuple[
  3. str, str, str, str, str, str, str, str, str, str, str, str, str
  4. ]:
  5. """
  6. Returns
  7. -------
  8. tuple
  9. Supported labels.
  10. """
  11. return (
  12. "SLC",
  13. "SEG",
  14. "REP",
  15. "AVG",
  16. "SET",
  17. "ECO",
  18. "PHS",
  19. "LIN",
  20. "PAR",
  21. "NAV",
  22. "REV",
  23. "SMS",
  24. "PMC",
  25. )
  26. def get_supported_rf_uses() -> Tuple[str, str, str, str, str]:
  27. """
  28. Returns
  29. -------
  30. tuple
  31. Supported RF use labels.
  32. """
  33. return "excitation", "refocusing", "inversion", "saturation", "preparation"