{"id":25,"date":"2024-02-05T08:16:32","date_gmt":"2024-02-05T08:16:32","guid":{"rendered":"https:\/\/doc.oncogalaxy.com\/?page_id=25"},"modified":"2025-04-23T04:32:09","modified_gmt":"2025-04-23T04:32:09","slug":"apri-score","status":"publish","type":"page","link":"https:\/\/doc.oncogalaxy.com\/index.php\/apri-score\/","title":{"rendered":"APRI Score (AST to Platelet Ratio Index)"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">To know Liver fibrosis status from CBC and LFT.<\/h3>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Medical Values<\/title>\n    <style>\n        label.mycalc {\n            border: 3px solid black;\n            padding: 5px 5px;\n            margin: 10px 10px;\n            color: black;\n            text-align: center;\n            font-weight: bold;\n            font-size: 20px;\n        }\n\n        input.calc {\n            border: 3px solid black;\n            background: yellow;\n            padding: 5px 5px;\n            margin: 10px 10px;\n            color: black;\n            text-align: center;\n            cursor: pointer;\n            font-weight: bold;\n            font-size: 20px;\n        }\n\n        button {\n            border: 3px solid black;\n            padding: 5px 5px;\n            margin: 10px 10px;\n            color: black;\n            text-align: center;\n            cursor: pointer;\n            font-weight: bold;\n            font-size: 20px;\n            border-radius: 12px;\n        }\n\n        button:hover {\n            color: darkred;\n        }\n\n    <\/style>\n<\/head>\n<body>\n\n    <label class= \"mycalc\" for=\"astValue\">AST (SGOT) Value:<\/label>\n    <input class=\"calc\" type=\"number\" id=\"astValue\" step=\"0.1\" placeholder=\"Enter AST Value\">\n    <p>Unit: UI\/L or U\/L<\/p>\n\n    <label class= \"mycalc\" for=\"astUpperLimit\">AST Value Upper limit:<\/label>\n    <input class=\"calc\" type=\"number\" id=\"astUpperLimit\" step=\"0.1\" value=\"40\">\n    <p>Unit: UI\/L or U\/L<\/p>\n    \n\n    <label class= \"mycalc\" for=\"plateletCount\">Platelet count:<\/label>\n    <input class=\"calc\" type=\"number\" id=\"plateletCount\" placeholder=\"Enter Platelet count\">\n    <p>Unit: \u00d710\u00b3\/\u03bcL or \u00d710^9\/L<\/p>\n    \n\n    <button onclick=\"calculateAPRIScore()\">Get APRI Score<\/button>\n    \n    <br>\n    \n\n    <label class= \"mycalc\" for=\"apriScore\">APRI Score:<\/label>\n    <input class=\"calc\" type=\"text\" id=\"apriScore\" style=\"background: white;cursor: default \" readonly>\n\n    \n    <br>\n\n    <label class= \"mycalc\" for=\"interpretation\">Interpretation:<\/label>\n    <input class=\"calc\" type=\"text\" id=\"interpretation\" style=\"background: white;cursor: default \" readonly>\n\n    <script>\n        function calculateAPRIScore() {\n            const astValue = parseFloat(document.getElementById('astValue').value) || 0;\n            const astUpperLimit = parseFloat(document.getElementById('astUpperLimit').value) || 1; \/\/ To avoid division by zero\n            const plateletCount = parseFloat(document.getElementById('plateletCount').value) || 1; \/\/ To avoid division by zero\n\n            const apriScore = (astValue * 100) \/ (astUpperLimit * plateletCount);\n\n            document.getElementById('apriScore').value = apriScore.toFixed(2);\n\n            \/\/ Interpretation\n            const interpretation = document.getElementById('interpretation');\n            if (apriScore < 0.5) {\n                interpretation.value = \"Minimal or no fibrosis\";\n                interpretation.style.backgroundColor = \"green\";\n                interpretation.style.color = \"black\";\n            } else if (apriScore >= 0.5 && apriScore < 1.5) {\n                interpretation.value = \"Mild fibrosis\";\n                interpretation.style.backgroundColor = \"green\";\n                interpretation.style.color = \"black\";\n            } else if (apriScore >= 1.5 && apriScore < 2) {\n                interpretation.value = \"Moderate fibrosis\";\n                interpretation.style.backgroundColor = \"red\";\n                interpretation.style.color = \"white\";\n            } else {\n                interpretation.value = \"Severe fibrosis or cirrhosis\";\n                interpretation.style.backgroundColor = \"red\";\n                interpretation.style.color = \"white\";\n            }\n        }\n\n        function applyFormatting(backgroundClass, textColor) {\n            const interpretation = document.getElementById('interpretation');\n            interpretation.classList.remove('green-background', 'red-background');\n            interpretation.classList.add(backgroundClass);\n            interpretation.style.color = textColor;\n        }\n    <\/script>\n   \n\n<\/body>\n<\/html>\n\n\n\n<h2 class=\"wp-block-heading\">What is APRI Score:<\/h2>\n\n\n\n<p>It is a less cost solution to know liver fibrosis or liver cirrhosis.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">APRI Score interpretation:<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">Score<\/mark><\/strong><\/td><td><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">Interpretation<\/mark><\/strong><\/td><\/tr><tr><td>&lt;0.5<\/td><td>Minimal or no fibrosis<\/td><\/tr><tr><td>\u22650.5 &amp; &lt;1.5<\/td><td>Mild fibrosis<\/td><\/tr><tr><td>\u22651.5 &amp; &lt;2.0<\/td><td>Moderate fibrosis<\/td><\/tr><tr><td>\u22652.0<\/td><td>Severe fibrosis or Cirrhosis<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<div style=\"height:21px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">APRI Score calculation:<\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"309\" src=\"https:\/\/doc.oncogalaxy.com\/wp-content\/uploads\/2024\/02\/1000105520-1-1024x309.jpg\" alt=\"\" class=\"wp-image-56\" srcset=\"https:\/\/doc.oncogalaxy.com\/wp-content\/uploads\/2024\/02\/1000105520-1-1024x309.jpg 1024w, https:\/\/doc.oncogalaxy.com\/wp-content\/uploads\/2024\/02\/1000105520-1-300x91.jpg 300w, https:\/\/doc.oncogalaxy.com\/wp-content\/uploads\/2024\/02\/1000105520-1-768x232.jpg 768w, https:\/\/doc.oncogalaxy.com\/wp-content\/uploads\/2024\/02\/1000105520-1.jpg 1228w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>To know Liver fibrosis status from CBC and LFT. Medical Values AST (SGOT) Value: Unit: UI\/L or U\/L AST Value Upper limit: Unit: UI\/L or <a class=\"mh-excerpt-more\" href=\"https:\/\/doc.oncogalaxy.com\/index.php\/apri-score\/\" title=\"APRI Score (AST to Platelet Ratio Index)\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[],"tags":[36,27,38,35,44,32,45,40,29,34,18,37,20,39,33,43,30,42,41,31,28],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/doc.oncogalaxy.com\/index.php\/wp-json\/wp\/v2\/pages\/25"}],"collection":[{"href":"https:\/\/doc.oncogalaxy.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/doc.oncogalaxy.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/doc.oncogalaxy.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/doc.oncogalaxy.com\/index.php\/wp-json\/wp\/v2\/comments?post=25"}],"version-history":[{"count":35,"href":"https:\/\/doc.oncogalaxy.com\/index.php\/wp-json\/wp\/v2\/pages\/25\/revisions"}],"predecessor-version":[{"id":250,"href":"https:\/\/doc.oncogalaxy.com\/index.php\/wp-json\/wp\/v2\/pages\/25\/revisions\/250"}],"wp:attachment":[{"href":"https:\/\/doc.oncogalaxy.com\/index.php\/wp-json\/wp\/v2\/media?parent=25"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/doc.oncogalaxy.com\/index.php\/wp-json\/wp\/v2\/categories?post=25"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/doc.oncogalaxy.com\/index.php\/wp-json\/wp\/v2\/tags?post=25"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}