Jiyoung Oh

From Biolecture.org
Revision as of 14:58, 23 May 2016 by imported>Jiyoung Oh

weezle52@naver.com

5.20 homework

20 amino acids

 

<<5/20 During lecture>>

how our programming~~

coding is not equal to programming. Coding is a tool for programming.

cracking - illegal, breaking into

hacking- invading site and code 훔치는 것   

 

how to program life?=how to hack life?

To know the data = The reason why we do experiments

 

Cell – full of circuit

IP,Y2H -> interaction 알기 위한 실험들 중 몇가지들

Scale free network(척도 없는 네트워크)

Architecture

Slide is simulating paper.

What simulation?

What is perl?

#/USF/bin/perl

 

Database

  • Flat file
  • Relational(MySQL)

 

<숙제하는 방법>

Make a Perl program translating 'all' combinations of triple bases into amino acids

$uuu = ‘F’ ;

(이런식으로 20개 아미노산 다 쓰기)

Array하는 방법

 

  1. @AA=(‘G’’I’,’K’,…);

          @Base=(‘A,T,G,C);

 

Or 2. %AA=(‘A’,’GCC’,’L’,’UUA,..);

          For(%AA);

 

Write ( )

Open(Filehandle,”/usr/bio/Jong/test.txt”);

Print(filehandle, “ “);

Close( )