You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: biodb/apps/catalog/migrations/0001_initial.py
+2-2
Original file line number
Diff line number
Diff line change
@@ -30,8 +30,8 @@ class Migration(migrations.Migration):
30
30
('app_version', models.CharField(blank=True, default=catalog.models.get_app_version, editable=False, help_text='App version used to create data product', max_length=32)),
31
31
('sha256', models.CharField(blank=True, editable=False, help_text='Checksum of downloadable file', max_length=64, validators=[django.core.validators.MinLengthValidator(64)], verbose_name='SHA-256')),
32
32
('n_rows', models.IntegerField(blank=True, editable=False, help_text='Number of data rows')),
33
-
('data_sha256', models.CharField(blank=True, editable=False, help_text='Checksum of data table (not including any spectral data files).', max_length=64, validators=[django.core.validators.MinLengthValidator(64)], verbose_name='Data SHA-256')),
34
-
('spectral_data_filenames', models.JSONField(blank=True, default=catalog.models.empty_list, editable=False, encoder=catalog.models.CustomDjangoJsonEncoder, help_text='List of spectral data filenames')),
33
+
('data_sha256', models.CharField(blank=True, editable=False, help_text='Checksum of data table (not including any array data files).', max_length=64, validators=[django.core.validators.MinLengthValidator(64)], verbose_name='Data SHA-256')),
34
+
('array_data_filenames', models.JSONField(blank=True, default=catalog.models.empty_list, editable=False, encoder=catalog.models.CustomDjangoJsonEncoder, help_text='List of array data filenames')),
Copy file name to clipboardexpand all lines: biodb/apps/catalog/models.py
+8-8
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ class Dataset(DatedModel):
46
46
sha256 (:obj:`django.models.CharField`): The SHA-256 checksum of the entire zip file.
47
47
n_rows (:obj:`django.models.IntegerField`): The number of rows in the zipped data file. Depending on the query, this could be the total number of patients or something else.
48
48
data_sha256 (:obj:`django.models.IntegerField`): The SHA-256 checksum of the data file archived within the zip file.
49
-
spectral_data_filenames (:obj:`django.models.JSONField`): A list of all the file names for all individual spectral data files zipped within the downloadable zip file.
49
+
array_data_filenames (:obj:`django.models.JSONField`): A list of all the file names for all individual array data files zipped within the downloadable zip file.
50
50
"""
51
51
52
52
classMeta:
@@ -99,13 +99,13 @@ class Meta:
99
99
null=False,
100
100
blank=True,
101
101
verbose_name="Data SHA-256",
102
-
help_text="Checksum of data table (not including any spectral data files).",
102
+
help_text="Checksum of data table (not including any array data files).",
0 commit comments