Commit Graph
9 Commits
Author SHA1 Message Date
Greg Von Kuster 5aa8cb1e23 Changed the call from Tabular().set_meta() to dataset.set_meta() since we now have a better approach to setting meta data for tabular data types. 2007-09-28 18:42:57 +00:00
Daniel Blankenberg ed964dd043 Add dataset filename table. Filenames can now be assigned, setting the readonly flag on a dataset filename object
will prevent Galaxy from deleting the file when the dataset is purged.  Copies of datasets (such as when sharing a
history), no longer copy file contents.

Database changes required:

CREATE TABLE dataset_filename (
        id INTEGER NOT NULL,
        create_time TIMESTAMP DEFAULT current_timestamp,
        update_time TIMESTAMP DEFAULT current_timestamp,
        filename TEXT,
        extra_files_path TEXT,
        readonly BOOLEAN,
        PRIMARY KEY (id)
);

ALTER TABLE dataset ADD filename_id INTEGER;
2007-09-24 19:42:09 +00:00
Daniel Blankenberg 42a90ea1f0 Script to ensure that MAF metadata is set. 2007-08-30 14:46:52 +00:00
Daniel Blankenberg b873d64859 Scripts to update metadata to the latest model.
Be sure to backup databases before executing.
2007-08-22 20:04:40 +00:00
Daniel Blankenberg 86651d8a66 Add a commandline util to cleanup abandoned histories and purge deleted datasets. 2007-07-31 21:40:14 +00:00
Ian Schenck fda163bbe8 Data validation. Please please please take a look and give me some input. 2007-03-12 18:35:03 +00:00
Ian Schenck 496ba08a30 Validating on upload. Still need to make template display a peek or something. 2007-03-09 21:02:23 +00:00
Ian Schenck 2ddab5819a Script that will run like a tool for each dataset generated. Is this in the right place? P.S. this stuff isn't final. 2007-03-09 19:45:29 +00:00
James Taylor 2c4c20436e Cleaning up modules. Still a few stragglers that can't be easily eggified.
EVERYTHING we depend on should eventually be under the galaxy module or
packaged in eggs to avoid namespace problems.
2006-11-15 18:27:21 +00:00