The existing QA data uses a different format than selected.
Selected Path:{{ clicked_path }} / {{ pipeline }}
Selected Mode
{{ 'BIDS' if selected_mode == 'bids' else 'Standard' }}
Existing Data
{{ 'BIDS' if existing_format == 'bids' else 'Standard' }}
Why does this matter?
The QA data format determines how reviews are stored and organized:
Standard mode: Uses filename as the key, includes duration tracking
BIDS mode: Uses nested subject/session structure, organized by BIDS tags
Opening with a mismatched mode would create duplicate entries and lose previous work.
Your Options
Restart with different command: Exit and restart with
{{ 'masi-bids-qa' if existing_format == 'bids' else 'masi-qa' }}
to match the existing data ({{ 'BIDS' if existing_format == 'bids' else 'Standard' }} mode)
Convert Data: Convert the existing QA data to {{ 'BIDS' if selected_mode == 'bids' else 'Standard' }} format to match your current mode
{% if conversion_error %}
Conversion not available: {{ conversion_error }}
{% endif %}
{% if not conversion_error %}
{% endif %}
Note: Converting will create a backup of QA.json as QA.json.backup before making changes.
The conversion preserves QA status, reason, user, and date for all reviewed images.
{% if selected_mode == 'flat' %}
Duration tracking will be reset to 0 for all entries.
{% endif %}