Skip to content

Instantly share code, notes, and snippets.

@mza
mza / gist:8787
Created September 4, 2008 14:49
Task: Protein lookup
Find protein structure for 1MBN
From PDB
Return sequence of protein
Task: Blast
Run BLAST
Using the protein sequence from Protein lookup task
On uniprot
Select all hits with e < 0.00001
## READ ME
I have a user model (restful_authentication) and would like a manager to be able to update the status of his users all at once. The users have three different statuses: active, inactive, guest. Guest is the default.
Using radio buttons I would like the manager to have free reign over how many users update at any one time.
There is a way to do this using loops, but that can get expensive quickly so I am looking for a better method.