🧬 Medical Research Intelligence

Understand any paper.
Instantly.

Paste a research paper, upload a PDF, or photograph a page. MedNeXuS gives you structured analysis, key findings, statistics decoded, and MCQs — in seconds.

Preview
📄
Drop PDF or image here
or click to browse · PDF, JPG, PNG supported
Reading paper...
Analysis Results
Choose your plan
Upgrade to unlock more papers, deeper analysis, and advanced features
🌱 Free
₹0 /month
  • 15 papers / month
  • 5 MCQs per paper
  • Basic analysis
  • Streak + XP
  • PDF download
  • Deep Research Mode
🔵 Basic
₹99 /month
Everything in Free, plus:
  • 30 papers / month
  • 8 MCQs per paper
  • Enhanced analysis
  • PDF download
  • Deep Research Mode
⚡ Pro
₹249 /month
Everything in Scholar, plus:
  • 100 papers / month
  • 15 MCQs per paper
  • Priority processing
  • Early access to features
🔥 Best Value
🏅 Scholar 6M
₹499 one-time
Save ₹395 vs monthly · No auto-renewal
  • Full Scholar for 6 months
  • Pay once, use for 6 months
  • +100 XP on activation
Coming Soon
🏛️ Institutional
Custom
For colleges & research communities
  • Team / batch access
  • Admin dashboard
  • Bulk licensing
All prices include GST · Cancel anytime · Secured by Razorpay · Pay via UPI, PhonePe, GPay, Card
Processing payment...
Please wait, do not close this tab
R
@username
email
Free
0
Total XP
0
Day Streak 🔥
0
Papers Read
MCQ Accuracy
+2 XP
Paper analyzed
// ── RENDER RESULTS — EDITORIAL SHEET ──────────────────────────── function renderResults(d){ analysisData = d; const tier = getTier(); const isPrem = tier !== 'free'; const isSchPro= tier==='scholar'||tier==='pro'||tier==='deal'; const tierLabels = {free:'Free',basic:'Basic Report',scholar:'Scholar Report',pro:'Pro Report',deal:'Scholar 6M Report'}; const tierClasses = {free:'tier-free',basic:'tier-basic',scholar:'tier-scholar',pro:'tier-pro',deal:'tier-scholar'}; if(d.title) document.getElementById('resultsTitleText').textContent = d.title; let html = '
'; // ── META STRIP (paid only) ───────────────────────────────── if(isPrem){ const m = d.methodology||{}; html += `
${m.study_type?`
📋 ${m.study_type}
`:''} ${m.sample_size?`
👥 ${m.sample_size}
`:''} ${m.duration?`
${m.duration}
`:''} ${d.evidence_level?`
📊 Evidence ${d.evidence_level}%
`:''}
${tierLabels[tier]||tier}
`; } // ── SUMMARY ─────────────────────────────────────────────── html += `
Summary
${d.plain_english||'No summary available.'}
`; if(d.key_takeaway && isPrem) html += `
💡
Clinical Pearl
${d.key_takeaway}
`; if(d.exam_takeaway) html += `
Exam Takeaway
${d.exam_takeaway}
`; html += `
`; // ── KEY FINDINGS ────────────────────────────────────────── if(d.key_findings?.length){ html += `
Key Findings (${d.key_findings.length})
`; d.key_findings.forEach((f,i)=>{ html += `
0${i+1}
${f}
`; }); html += `
Evidence Level
${d.evidence_level||75}%
`; if(d.clinical_relevance) html += `
Clinical Relevance
${d.clinical_relevance}
`; html += `
`; } // ── METHODOLOGY ─────────────────────────────────────────── if(d.methodology){ const items = Object.entries(d.methodology).filter(([,v])=>v); if(items.length){ html += `
Methodology
`; items.forEach(([k,v])=>{ html += `
${k.replace(/_/g,' ')}
${v}
`; }); html += `
`; } } // ── STATISTICS ──────────────────────────────────────────── if(d.statistics?.length){ html += `
Statistics Decoded
`; d.statistics.forEach(s=>{ html += `
${s.term}
${s.value}
${s.meaning}
`; }); html += `
`; } // ── CLINICAL INTELLIGENCE (Basic+) ──────────────────────── if(isPrem && (d.patient_impact||d.study_quality||d.bias_risks?.length)){ html += `
Clinical Intelligence
`; if(d.patient_impact) html += `
Patient Impact
${d.patient_impact}
`; if(d.study_quality) html += `
Study Quality
${d.study_quality}
`; html += `
`; if(d.bias_risks?.length) html += `
${d.bias_risks.map(b=>`
${b}
`).join('')}
`; html += `
`; } // ── LIMITATIONS ─────────────────────────────────────────── if(d.limitations?.length){ html += `
Limitations
`; d.limitations.forEach(l=>{ html += `
${l}
`; }); html += `
`; } // ── DEEP RESEARCH (Scholar/Pro) ─────────────────────────── if(deepModeActive && d.deep){ const dd = d.deep; html += `
Deep Research Analysis
`; if(dd.impact_score){ html += `
${dd.impact_score}/10
Clinical Impact Score
Based on study design, effect size & clinical applicability
`; } [['🔍','Research Gap',dd.research_gap],['📐','Framework',dd.framework], ['📉','Statistical Deep Dive',dd.stats_deep],['👥','Subgroup Analysis',dd.subgroups], ['🔀','Confounders',dd.confounders],['🌍','Generalizability',dd.generalizability], ['📚','vs Literature',dd.vs_literature],['🔮','Future Research',dd.future], ['🚧','Barriers',dd.barriers],['⚖️','Ethics',dd.ethics] ].filter(([,,v])=>v).forEach(([icon,lbl,txt])=>{ html += `
${icon} ${lbl}
${txt}
`; }); html += `
`; } else if(!deepModeActive){ if(canDeep()){ html += `
🔬
Re-analyze with Deep Mode
Enable Deep Mode and re-analyze for exhaustive research-grade output.
`; } else { html += `
🔬
Deep Research Mode
Unlock exhaustive, publication-grade analysis designed for researchers and PG students.
Research GapStatistical Deep DiveConfoundersClinical Impact Scorevs LiteratureFuture Research
`; } } // ── CHAT ────────────────────────────────────────────────── const chatTierClass = {free:'tier-free',basic:'tier-basic',scholar:'tier-scholar',pro:'tier-pro',deal:'tier-scholar'}[tier]||'tier-free'; const tierLabel = {free:'Free',basic:'Basic',scholar:'Scholar',pro:'Pro',deal:'Scholar 6M'}[tier]||tier; const chips = isSchPro ? ['Research gap?','Compare to literature','Explain confounders','Clinical implications','NEET PG angle','Future studies?'] : ['Main limitations?','Explain statistics simply','Clinical implications?','Exam questions']; html += `
Ask anything about this paper
${tierLabel}
🧬
${isSchPro ? 'Paper analyzed with deep intelligence. Ask me anything — methodology, research gaps, clinical implications, NEET PG angles, or literature comparisons.' : 'Paper analyzed! Ask me anything about methodology, statistics, findings, or exam tips.' }
${chips.map(ch=>``).join('')}
`; html += '
'; // close report-sheet document.getElementById('resultsCards').innerHTML = html; document.getElementById('resultsSection').style.display = 'block'; setTimeout(()=>{ document.getElementById('resultsSection').classList.add('show'); window.scrollTo({top:0,behavior:'smooth'}); document.querySelectorAll('.rs-ebar-fill,.rs-impact-bar-fill').forEach(bar=>{ bar.style.width = (bar.dataset.w||75)+'%'; }); },50); if(d.mcqs?.length) renderMCQs(d.mcqs); }meta charset="UTF-8"> MedNeXuS — Medical Research Intelligence
🧬 Medical Research Intelligence

Understand any paper.
Instantly.

Paste a research paper, upload a PDF, or photograph a page. MedNeXuS gives you structured analysis, key findings, statistics decoded, and MCQs — in seconds.

Preview
📄
Drop PDF or image here
or click to browse · PDF, JPG, PNG supported
Reading paper...
Analysis Results
Choose your plan
Upgrade to unlock more papers, deeper analysis, and advanced features
🌱 Free
₹0 /month
  • 15 papers / month
  • 5 MCQs per paper
  • Basic analysis
  • Streak + XP
  • PDF download
  • Deep Research Mode
🔵 Basic
₹99 /month
Everything in Free, plus:
  • 30 papers / month
  • 8 MCQs per paper
  • Enhanced analysis
  • PDF download
  • Deep Research Mode
⚡ Pro
₹249 /month
Everything in Scholar, plus:
  • 100 papers / month
  • 15 MCQs per paper
  • Priority processing
  • Early access to features
🔥 Best Value
🏅 Scholar 6M
₹499 one-time
Save ₹395 vs monthly · No auto-renewal
  • Full Scholar for 6 months
  • Pay once, use for 6 months
  • +100 XP on activation
Coming Soon
🏛️ Institutional
Custom
For colleges & research communities
  • Team / batch access
  • Admin dashboard
  • Bulk licensing
All prices include GST · Cancel anytime · Secured by Razorpay · Pay via UPI, PhonePe, GPay, Card
Processing payment...
Please wait, do not close this tab
R
@username
email
Free
0
Total XP
0
Day Streak 🔥
0
Papers Read
MCQ Accuracy
+2 XP
Paper analyzed