#!/usr/local/bin/python3.3 import cgi import cgitb import datetime from functions import get_cookies, phead, ptail, ptmpbody cgitb.enable() cookie = get_cookies() if cookie: print(cookie) fname = cookie["fname"].value lname = cookie["lname"].value name = " ".join((fname, lname)) admin = cookie["admin"].value print("Content-type: text/html\n") phead(name, admin) print("""

What is DAPR?

Above is a diagram of how DAPR is organized, please make yourself familiar with it before using DAPR. See your admin if you have any questions!

DAPR has two types of users: administrative users and normal users. There will be projects created by the admin that normal users may see and use for analysis purposes, but may not delete or edit these projects or the data within them. As a user you may create projects, in which you can put studies (which are associated with a certain platform (ie- hg18, mm9, etc). These studies contain experiments, in which you can store BED files. The BED files can store metadata such as a wet-lab method or a computational method that was used to generate the file. To get started, create a project under the "Manage" tab at the top of the page.

""") ptail() else: print("Location: login.py") print("Content-type: text/html\n")