3a88c02326aadbb1df3436cd519f7b8a4df6ae5b chmalee Thu Jun 6 15:32:15 2024 -0700 Work in progress using the mysql table for hubSpace on client side diff --git src/hg/lib/hubSpace.as src/hg/lib/hubSpace.as index 44f6179..2512928 100644 --- src/hg/lib/hubSpace.as +++ src/hg/lib/hubSpace.as @@ -1,13 +1,14 @@ table hubSpace "file storage table for users to store uploaded tracks" ( string userName; "userName of user uploading file" lstring fileName; "name of uploaded files. The actual path to this file is different" bigint fileSize; "size of the uploaded file" string fileType; "track type of file" string creationTime; "first upload time" string lastModified; "last change time" lstring hubNameList; "comma separated list of hubs this file is a part of" string db; "genome assembly associated with this file" lstring location; "file system path or URL to file" + string md5sum; "md5sum of file" )