2016.5.20

From Biolecture.org

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, "");