2016.5.20

From Biolecture.org
Revision as of 02:01, 27 May 2016 by imported>Yunseok Han (Created page with "<p>BioProgramming</p> <p>How cells are programmed?</p> <p>How to hack the life?</p> <p>Doing experiment to collect data to know the biological circuits<br /> i.e.) To know pro...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

BioProgramming

How cells are programmed?

How to hack the life?

Doing experiment to collect data to know the biological circuits
i.e.) To know protein interaction by IP or YTH

Network biolgy

avert risks

Balance b/w efficiency and reducing risk

Understaning architecture

Simulating

*Define 20 most imprortant words in my life

Guru of the programming

Perl

#/usr/bin/perl
$var
@var
%var

  • Learn Bioperl
    • Install Linux

Automation is the key

Use fast prototyping

Solve the problems

Reuse scripts

Share the codes with lab members

Use openfree resources

#/usr/bin/perl
1)
$UUU='F';
$AUU='I';
.
.
.
2)
@AA('G','I',..);
@Base('A','U','C','G');
.
.
.
3)
※AA=('A','GCC','L','UUA',...);
.
.
.
4)
for{
 for{
  for{
  }
 }
};

define filehandle
open(FileHandle,"address");
print(Filehandle, "");
close(Filehandle, "");