Mercurial > repos > yating-l > jbrowsehubtoapollo
comparison apollo/ApolloUser.py @ 0:bc00f5c4c59e draft
planemo upload for repository https://github.com/Yating-L/jbrowse-archive-creator.git
author | yating-l |
---|---|
date | Tue, 17 Oct 2017 17:28:05 -0400 |
parents | |
children | 2ae1e96a8380 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:bc00f5c4c59e |
---|---|
1 #!/usr/bin/python | |
2 | |
3 import os | |
4 | |
5 class ApolloUser(object): | |
6 def __init__(self, user_email, firstname, lastname, password): | |
7 self.user_email = user_email | |
8 self.firstname = firstname | |
9 self.lastname = lastname | |
10 self.password = password |