From: Brandon King Date: Thu, 26 Mar 2009 18:49:45 +0000 (+0000) Subject: Added default SampleTypes that are loaded automatically when using manage.py syncdb X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=2d848ea93a7019027c51e83def5bdcc5eda8a675 Added default SampleTypes that are loaded automatically when using manage.py syncdb --- diff --git a/fixtures/initial_data.xml b/fixtures/initial_data.xml new file mode 100644 index 0000000..a72a290 --- /dev/null +++ b/fixtures/initial_data.xml @@ -0,0 +1,15 @@ + + + + RNASeq + + + ChIPSeq + + + DeNovoSeq + + + MethylSeq + + diff --git a/samplebc/settings.py b/samplebc/settings.py index daaae8a..4aa9dad 100644 --- a/samplebc/settings.py +++ b/samplebc/settings.py @@ -85,8 +85,12 @@ INSTALLED_APPS = ( 'samplebc.bcmagic' ) +FIXTURE_DIRS = ( + os.path.abspath('../fixtures'), +) + ######################### # App Specific Settings -HTSW_ST_APPNAME = 'HTSW-SampleTracker' \ No newline at end of file +HTSW_ST_APPNAME = 'HTSW-SampleTracker'