Git Product home page Git Product logo

yjsyyyjszf / sqan Goto Github PK

View Code? Open in Web Editor NEW

This project forked from iusca/sqan

0.0 1.0 0.0 4.05 MB

Scalable Quality Assurance for Neuroimaging - (SQAN): A full-stack system solution for extracting, translating, and logging (ETL) + web portal-based quality-control verification of DICOM-formatted medical imaging data/metadata.

Home Page: https://sqan.sca.iu.edu/

License: Other

JavaScript 64.36% Shell 0.19% CSS 8.32% HTML 27.13%

sqan's Introduction

Scalable Quality Assurance for Neuroimaging - (SQAN)

Web based instrumental & protocol quality control for medical imaging

Introduction

SQAN (formerly RADY-SCA) is a full-stack system solution for extracting, translating, and logging (ETL) + modern web portal-based quality-control verification of DICOM-format medical imaging data and metadata. SQAN consists of four principle components:

  • Incoming (node.js)
    • Watches for and retrieves imaging data from a transfer service (e.g. an Orthanc instance)
    • Extracts and compresses metadata and stores in a database
  • Quality Control (node.js)
    • Performs protocol and exam-level verification on newly arrived data, and on existing data as requested
  • API (node.js/ExpressJS)
    • Provides authorized access to metadata and QC results
  • UI (AngularJS)
    • Allows authorized users to view stored data, QC results, modify QC templates and access controls, comment on QC issues, alert affected researchers, and re-run QC tests

Requirements

  • node.js (>8.0)
  • npm (>6.1)
  • MongoDB (>3.4)
  • nginx

Deployment

  1. Clone this repository
  2. cd sqan && npm install
  3. cd config && ./genkey.sh
  • generates public/private keys for JSON Web Token signing/verification
  1. cp index.sample.js index.js
  • Modify config/index.js as needed
  1. cd ../ui && cp config.sample.js config.js
  • Modify ui/config.js as needed
  1. Launch API
  • npm start
  1. Configure nginx to serve API/UI
  2. (optional) Load sample dataset (available upon request)
  3. (optional) Initiate Incoming and QC processes
  • npm run incoming
  • npm run qc
  1. (optional) Use pm2 or similar process manager to run API and other required processes listed above.

nginx configuration

Sample nginx configuration to serve UI and API

    location / {
        alias /usr/local/sqan/ui;
        index index.html;
        try_files $uri $uri/ /index.html =404;
    }
    
    location /api/qc/ {
        proxy_pass http://localhost:22340/;
    }

Make sure the port for the API matches that set in config/index.js and the location for the API matches the setting in ui/config.js

sqan's People

Contributors

soichih avatar youngmd avatar agopu avatar aiavenak avatar dependabot[bot] avatar iibis avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.