-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tie tags to chemsets at creation and only include those tags when pas…
…sing to UI.
- Loading branch information
Showing
3 changed files
with
45 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Generated by Django 2.2.6 on 2019-12-08 19:56 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('cspace', '0003_chemical_tpsa'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='chemicalset', | ||
name='tags', | ||
field=models.ManyToManyField(to='cspace.ChemicalTag'), | ||
), | ||
migrations.AlterField( | ||
model_name='chemicalsetfacet', | ||
name='embedding', | ||
field=models.TextField(choices=[('3/RDK/MDS', '3/RDKit/Multidimensional Scaling'), ('3/RDK/NM-MDS', '3/RDKit/Non-Metric Multidimensional Scaling'), ('3/RDK/SMACOF', '3/RDKit/SMACOF Multidimensional Scaling'), ('3/RDK/NM-SMACOF', '3/RDKit/Non-Metric SMACOF Multidimensional Scaling'), ('3/TSNE', '3/TNSE')]), | ||
), | ||
migrations.AlterField( | ||
model_name='chemicalsetfacet', | ||
name='sim_measure', | ||
field=models.TextField(choices=[('RDK/T', 'RDKit/Tanimoto'), ('GOBI/T', 'Gobi-Poppinger/Tanimoto')]), | ||
), | ||
migrations.AlterField( | ||
model_name='computefacetjob', | ||
name='embedding', | ||
field=models.TextField(choices=[('3/RDK/MDS', '3/RDKit/Multidimensional Scaling'), ('3/RDK/NM-MDS', '3/RDKit/Non-Metric Multidimensional Scaling'), ('3/RDK/SMACOF', '3/RDKit/SMACOF Multidimensional Scaling'), ('3/RDK/NM-SMACOF', '3/RDKit/Non-Metric SMACOF Multidimensional Scaling'), ('3/TSNE', '3/TNSE')]), | ||
), | ||
migrations.AlterField( | ||
model_name='computefacetjob', | ||
name='sim_measure', | ||
field=models.TextField(choices=[('RDK/T', 'RDKit/Tanimoto'), ('GOBI/T', 'Gobi-Poppinger/Tanimoto')]), | ||
), | ||
] |
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