This is the email I sent as an introduction to my project I've been working on over the last few weeks. Note that by the time anyone sees this blog, the system will likely be locked down and restricted to certain IP's. Those outside the organization or those who aren't aware at least of what a specimen cache would be used for probably needn't read on, but if you're just curious here it is.
I believe everybody knows now, but consider this a semi-formal introduction to the caching system I've put together over the last few weeks. I'm not a creative person, so the name is simply 'traktube', and the colors almost match. This email is a bit long winded, and I feel like I repeat myself a few times, but it should be clear enough for everyone, if not too technical at times.
It can currently be found at http://traktube.traviscaruth.com/ as my working copy, but I also own the domain http://traktube.com.
User Mumbo Jumbo
The user interface is very simple. Taking a few points from Freezerworks, along with asking my co-workers, I'm happy with the general design. There are three main functions anyone would want to do in a caching system, I've outlined each below.
Adding is the default action, so upon opening the site you can quickly choose what shelf, rack, x and y position you want, and begin adding samples. When a scanner sees a barcode, it enters the value the barcode holds very quickly, followed by the enter keyboard event. traktube immediately takes that value out of the accession box, and begins processing it and a wealth of other information in the background. It currently checks the average length of the last few samples to make sure we didn't get a short barcode (although I believe that was purely an error in Freezerworks, and shouldn't ever happen in traktube). Also, since opening the page currently always shows position 'A111', I chose to show a warning so the user can verify they've chosen the correct position for the tube in their hand. In the table (where we're storing the information), we're keeping track of each shelf, rack, rack x position, rack y position, accession number, along with a timestamp to see when each sample was cached. After scanning, before saving, we also update the visual rack on the page to show the 'filled' positions, as well as the next position to be filled. Feedback from associates requested this grid, and I was able to add it within 8-10 hours.
Deleting only usually happens when we're throwing away an entire shelf of samples. I was concerned at first about not keeping track of what we're deleting, but in the interest of keeping extra maintenance at a minimum, we're going to let users delete samples in great quantity. Backups are discussed briefly in the technical mumbo jumbo below Users can select any number of shelves, along with any number of racks. Windows provides the ability to select more than one item using the control and shift keys, and those are active here as well. Racks 1-12 are selected by default, with no shelves, so accidently hitting the delete button will never take anything away. Allowing a user to select specific shelves was another request from my associates, as sometimes there is concern that a rack may have been cached incorrectly (which we hoped to have solved with the grid on the add page). Nonetheless, I added that ability as well, and it works as you'd expect. A small quirk with this is that, you may delete any number of shelves, and only a few racks on the shelf. Personally I think it's easy enough to see when a rack is selected or not, but I'm on a computer quite often as it is, so I'll be looking for more feedback about this.
Searching is the second most often thing we'll be doing, and the function that I really wanted to be the fastest. The text box is selected by default, for easy scanning or typing immediately after clicking search. The search is currently set to 'like' matches, rather than exact matches. This has a few quirks as well, but I like it better than exact matching. I'll be looking for more feedback about this as well. Currently with 'like' searches, it checks the table for any row that contains your search query anywhere in it. This leads to many results being listed if you happen to search by a specific number, like '1', or any letter that matches a day of the week, like 'M'. Switching this to only be an exact match is currently do-able with one line of code, but I really do like 'like' better. Search results are listed with shelf, rack, x, y, accession, location they were cached, and date/timestamp. I like the clean look, and upon asking some of our older co-workers, they said they didn't need borders between rows. There are also buttons to delete any particular row. Upon clicking delete, an alert lets you know when it was successful, and the search query runs again for whatever accession you just deleted. Below the search results, I list how many matches there are that match your search, along with how many samples are left in the cache.
Technical Mumbo Jumbo
The server runs on php 5.4, mysqli running MySQL CS(GPL) 5.5.41-cll-lve, cpsrvd 11.48.0.11, libmysql 5.1.73; and the end user interface uses javascript, html5, and css3, all of which are supported in IE11, which is what TIS recently began pushing to all the computers. Every bit of code was handwritten by myself and my associate, Justin Beall. Every source file is well commented for anybody who would want to look things over, but the actual versions that will be running on the production server will be mini-fied to squeeze out every last microsecond. Backups can be began and exported into the standard csv format upon visiting http://traktube.traviscaruth.com/tools/backup.php, or simply ran automatically and backed up on the server.
There are a number of tools available for myself to test with, or anyone to play with if they choose, that can be found at http://traktube.traviscaruth.com/tools/. Upon entering production, the table set for this page will be set to a testing table, so no complications will arise.
The tools available publically and linked from that page are briefly described below.
- addMore - will add any number of samples, with randomized days of the week, shelves, racks, x, and y positions to the table. This was used for stress testing, and with up to 1000000 samples, searching still took a very short time. I do not suggest searching with a blank query when this many samples are present in the table. typically this will be limited by the browser, as it will likely crash before it can finish adding.
- addDuplicates - similar to addMore, this forces a certain accession (M25025) to a random position. Used to format the search page, along with additional stress testing.
- sql error log - this requires a login, and exposes some of the commands i'm using to add/remove samples. will likely remain locked from view.
- avgAccession - searches the table, averages the last #X samples, and prints the number with decimals. This is the page the scripts use to pull in and compare to the accession we're adding, which is why it will likely always remain undecorated and simple
- next available position - the last of my debug scripts. Currently coded for shelf 'K', rack '11'. viewing the source of this page will show hidden inputs that the javascript *could* read but isnt because of the naivety inherent in the system
A few questions you might ask:
Why do you have to check for A111 in the dropdown? Shouldn't it know if there's already a sample there?
We check if a user really meant to because the system was built for speed. In pursuing that goal, we make a few assumptions. One is, that if a user has a rack that's in front of them, and the system will never roll back the location they should be caching in without input, then the spot is probably blank. Asking the server to check the table for every position is a small subsection of what makes Freezerworks slow. If you use addMore, you'll likely get a few accessions that would be in the same spot, and that's no big deal for us. Never has anyone needed to search whether a certain location is filled, they could look with their eyes much quicker. When we delete, we delete based on position, so any tubes that are cached in a spot, but not actually in that spot, will be deleted as well. I'll take further questions about this, but I have a strong opinion and built the system with this idea in mind.
How do we know it's safe? What if somebody breaks in?
The worst somebody could do is see a 6 character letter/number combination, which can't lead to any information, or delete the samples, which will be backed up daily or however often LIS deams necessary. I've got the code to restrict it to MNI's IP address which will be activated if this goes into production. I also have copies of every file available for anyone who requests them, most of which are commented pretty heavily. Anyone with some programming experience or a willing to learn (at least to read it, even if you're not going to write it) could browse these to make sure there's no malicious code. Along with that, I fully expect Mercy or Trinity or whoever to want to host this themselves, rather than on my personal domain (although it's not going anywhere), and thats fine. I would ask that I retain access to update or bugfix. As I said before I've written or rewritten every single line of code this thing runs, and if it's broken, I can fix it.
How can we transition from Freezerworks into traktube?
If I can get a copy of the database Freezerworks is using, I believe I can prune it down and import it into this system. I need to see the database first to be sure, but with some work, I'm guessing it can be done. If not, hire me for a day to cache every sample in the fridge, or work out a best time scenario (Tuesday at noon, or night is my guess) to switch and simply start using it. Freezerworks (I'm guessing) still has a license that lasts forever, so until a week goes by, the ability to search will be slightly hindered by needing to do it in two separate systems. I also have began a sort of FAQ/help file designed for new employees, that might be useful for everyone when and if this transition occurs.
I'll take any questions from any of you, as well as anybody you need or choose to forward this to.
Thanks for reading,
Travis Caruth
me@traviscaruth.com
515.981.6543