Difference between revisions of "Jiyoung Oh"

From Biolecture.org
imported>Jiyoung Oh
imported>Jiyoung Oh
Line 8: Line 8:
  
 
<p>&nbsp;</p>
 
<p>&nbsp;</p>
 +
 +
<p>&lt;&lt;5/20 During lecture&gt;&gt;</p>
 +
 +
<p>how our programming~~</p>
 +
 +
<p>coding is not equal to programming. Coding is a tool for programming.</p>
 +
 +
<p>cracking - illegal, breaking into</p>
 +
 +
<p>hacking- invading site and code 훔치는 것&nbsp; &nbsp;</p>
 +
 +
<p>&nbsp;</p>
 +
 +
<p>how to program life?=how to hack life?</p>
 +
 +
<p>To know the data = The reason why we do experiments</p>
 +
 +
<p>&nbsp;</p>
 +
 +
<p>Cell &ndash; full of circuit</p>
 +
 +
<p>IP,Y2H -&gt; interaction 알기 위한 실험들 중 몇가지들</p>
 +
 +
<p>Scale free network(척도 없는 네트워크)</p>
 +
 +
<p>Architecture</p>
 +
 +
<p>Slide is simulating paper.</p>
 +
 +
<p>What simulation?</p>
 +
 +
<p>What is perl?</p>
 +
 +
<p>#/USF/bin/perl</p>
 +
 +
<p>&nbsp;</p>
 +
 +
<p>Database</p>
 +
 +
<ul>
 +
<li>Flat file</li>
 +
<li>Relational(MySQL)</li>
 +
</ul>
 +
 +
<p>&nbsp;</p>
 +
 +
<p>&lt;숙제하는 방법&gt;</p>
 +
 +
<p style="margin-left:18.0pt"><a href="http://biolecture.org/index.php/Make_a_Perl_program_translating_%27all%27_combinations_of_triple_bases_into_amino_acids" title="Make a Perl program translating 'all' combinations of triple bases into amino acids">Make a Perl program translating &#39;all&#39; combinations of triple bases into amino acids</a></p>
 +
 +
<p>$uuu = &lsquo;F&rsquo; ;</p>
 +
 +
<p>(이런식으로 20개 아미노산 다 쓰기)</p>
 +
 +
<p>Array하는 방법</p>
 +
 +
<p>&nbsp;</p>
 +
 +
<ol>
 +
<li>@AA=(&lsquo;G&rsquo;&rsquo;I&rsquo;,&rsquo;K&rsquo;,&hellip;);</li>
 +
</ol>
 +
 +
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; @Base=(&lsquo;A,T,G,C);</p>
 +
 +
<p>&nbsp;</p>
 +
 +
<p>Or 2. %AA=(&lsquo;A&rsquo;,&rsquo;GCC&rsquo;,&rsquo;L&rsquo;,&rsquo;UUA,..);</p>
 +
 +
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; For(%AA);</p>
 +
 +
<p>&nbsp;</p>
 +
 +
<p>Write ( )</p>
 +
 +
<p>Open(Filehandle,&rdquo;/usr/bio/Jong/test.txt&rdquo;);</p>
 +
 +
<p>Print(filehandle, &ldquo; &ldquo;);</p>
 +
 +
<p>Close( )</p>

Revision as of 14:58, 23 May 2016

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( )