From 2d848ea93a7019027c51e83def5bdcc5eda8a675 Mon Sep 17 00:00:00 2001 From: Brandon King Date: Thu, 26 Mar 2009 18:49:45 +0000 Subject: [PATCH] Added default SampleTypes that are loaded automatically when using manage.py syncdb --- fixtures/initial_data.xml | 15 +++++++++++++++ samplebc/settings.py | 6 +++++- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 fixtures/initial_data.xml 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' -- 2.30.2