Protein Production
293FT, 293E, CHO

Truly Functional Protein
95% Purity
1-10 mg in 2 weeks

GeneExpressoMax™
293Expresso™

Transfection Reagents
* 90% Efficiency
* 95% Viability
* No sera interference
* Simple protocol
* High-throughput
* Only $98/ml

Baculovirus
Functional Protein
95% Purity
Fast turnaround
1-10 mg from Sf9 cells

Adenovirus, AAV
& Lentivirus

ORF or shRNA
* High Titer
* Cre, FLP, ΦC31
* Protein Kinases
* Transcription Factors
* Luciferases, GFP, RFP
* Protein Production
* Stable Cell Line


Excellgen

Archive for April, 2008

Develop a Laboratory Information Management System Using Mediawiki, PHP and Perl

LIMS for Freezer Sample Tracking

Software: Mediawiki.

Components: Perlwikipedia, CMS::MediaWiki.

Programming languages: PHP, Perl, SPARQL.

Example Code


#!/usr/bin/perl
use strict;

use Perlwikipedia;

my $user = ‘admin’; my $pass = ‘xxx’;
my $hostname=”xxx.com”;
my $directory=”LIMS”;
my $editor=Perlwikipedia->new($user);
$editor ->set_wiki($hostname, $directory);
$editor->{debug} = 1;

$editor->login($user, $pass);

my $article = “Wikipedia:Freezer”;
my $text=$editor->get_text($article);

$text = $text . “Run a PCR reaction on June, 7 2007 <br />”;

my $edit_summary=’PCR Enhancer Protein’;

my $is_minor = 0;

$editor->edit($article, $text, $edit_summary, $is_minor);

Tags:

Comments

April 19, 2008 at 12:48 pm ·

« Previous Page « Previous « Previous Page