forked from louadi/DIGGER
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from daisybio/refactorKonstantin
Shareable links and custom save time for analyses
- Loading branch information
Showing
18 changed files
with
1,363 additions
and
1,288 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -223,4 +223,6 @@ cython_debug/ | |
# IntelliJ like IDEs (e.g. PyCharm) | ||
.idea | ||
|
||
tmp* | ||
tmp* | ||
container/nease_events | ||
|
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,38 @@ | ||
# Generated by Django 2.2.28 on 2024-09-09 12:32 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
initial = True | ||
|
||
dependencies = [ | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='Domain', | ||
fields=[ | ||
('pfam_id', models.CharField(db_index=True, max_length=10, primary_key=True, serialize=False)), | ||
('symbol', models.CharField(max_length=20)), | ||
('description', models.CharField(max_length=150)), | ||
], | ||
), | ||
migrations.CreateModel( | ||
name='Gene', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('ensembl_id', models.CharField(max_length=20)), | ||
('gene_symbol', models.CharField(db_index=True, max_length=20)), | ||
], | ||
), | ||
migrations.CreateModel( | ||
name='NeaseSaveLocationMapping', | ||
fields=[ | ||
('run_id', models.CharField(db_index=True, max_length=36, primary_key=True, serialize=False)), | ||
('saved_for_days', models.IntegerField()), | ||
('date_of_creation', models.DateTimeField(auto_now_add=True)), | ||
], | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
container/domain/migrations/0002_neasesavelocationmapping_name.py
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,18 @@ | ||
# Generated by Django 2.2.28 on 2024-09-09 13:22 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('domain', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='neasesavelocationmapping', | ||
name='name', | ||
field=models.CharField(default='', max_length=255), | ||
), | ||
] |
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,27 @@ | ||
# Generated by Django 2.2.28 on 2024-09-10 11:57 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('domain', '0002_neasesavelocationmapping_name'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='neasesavelocationmapping', | ||
name='name', | ||
), | ||
migrations.AddField( | ||
model_name='neasesavelocationmapping', | ||
name='custom_name', | ||
field=models.CharField(default='', max_length=255), | ||
), | ||
migrations.AddField( | ||
model_name='neasesavelocationmapping', | ||
name='file_name', | ||
field=models.CharField(default='', max_length=255), | ||
), | ||
] |
Empty file.
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
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
Oops, something went wrong.