def calculate_phases_score(aneurysm_size, age, hypertension, smoking): score = 0 # Calcola il punteggio in base alla dimensione dell'aneurisma if aneurysm_size <= 7: score += 1 elif aneurysm_size <= 15: score += 2 else: score += 3 # Calcola il punteggio in base all'età if age <= 60: score += 1 else: score += 2 # Calcola il punteggio in base all'ipertensione if hypertension: score += 2 # Calcola il punteggio in base al fumo if smoking: score += 3 return score # Esempio di utilizzo phases_score = calculate_phases_score(10, 65, True, True) print("Il phases score è:", phases_score) Preoperative embolization of hypervascular spinal tumors: current practice and center experience. – Lab Neurovascolare

Preoperative embolization of hypervascular spinal tumors: current practice and center experience.

Pikis S, Itshayek E, Barzilay Y, Hasharoni A, Kaplan L, Gomori M, Cohen JE.

Pubmed

Preoperative transarterial embolization of hypervascular spinal tumors has been extensively used, and is considered to be a highly effective adjuvant technique in reducing intraoperative blood loss during surgery. Moreover, it has been reported to increase the feasibility and safety of the surgical procedure, leading to better surgical outcomes. We review the English literature in an attempt to identify indications, appropriate timing of embolization in relation to surgery, technical aspects of the procedure, complications, and the contribution of embolization to the surgical management of spinal tumors. In addition, we report our experience with embolization of hypervascular metastases.
doi: 10.1179/1743132814Y.0000000361
[sgmb id=”1″]

Leave a Reply