-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* window level preset buttons * add CT to allowed scan types * Add migration for new scan type option * Lint fix Co-authored-by: curtislisle <[email protected]> Co-authored-by: Anne Haley <[email protected]>
- Loading branch information
1 parent
c9c078d
commit 97a66c4
Showing
3 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Generated by Django 3.2.13 on 2022-06-01 20:01 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0033_project_anatomy_orientation'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='scan', | ||
name='scan_type', | ||
field=models.CharField( | ||
choices=[ | ||
('T1', 'T1'), | ||
('T2', 'T2'), | ||
('FMRI', 'FMRI'), | ||
('MRA', 'MRA'), | ||
('PD', 'PD'), | ||
('DTI', 'DTI'), | ||
('DWI', 'DWI'), | ||
('ncanda-t1spgr-v1', 'ncanda-t1spgr-v1'), | ||
('ncanda-mprage-v1', 'ncanda-mprage-v1'), | ||
('ncanda-t2fse-v1', 'ncanda-t2fse-v1'), | ||
('ncanda-dti6b500pepolar-v1', 'ncanda-dti6b500pepolar-v1'), | ||
('ncanda-dti30b400-v1', 'ncanda-dti30b400-v1'), | ||
('ncanda-dti60b1000-v1', 'ncanda-dti60b1000-v1'), | ||
('ncanda-grefieldmap-v1', 'ncanda-grefieldmap-v1'), | ||
('ncanda-rsfmri-v1', 'ncanda-rsfmri-v1'), | ||
('PET', 'PET'), | ||
('CT', 'CT'), | ||
], | ||
default='T1', | ||
max_length=25, | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters