-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAdditional algorithm 1.html
More file actions
32 lines (26 loc) · 2.73 KB
/
Additional algorithm 1.html
File metadata and controls
32 lines (26 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!-- ############################################################################################################################## -->
<!-- # John Wiley & Sons, Inc. # -->
<!-- # # -->
<!-- # Book: Algorithms in Bioinformatics: Theory and Implementation # -->
<!-- # Author: Dr. Paul A. Gagniuc # -->
<!-- # # -->
<!-- # Institution: # -->
<!-- # University Politehnica of Bucharest # -->
<!-- # Faculty of Engineering in Foreign Languages # -->
<!-- # Department of Engineering in Foreign Languages # -->
<!-- # # -->
<!-- # Area: European Union # -->
<!-- # Date: 04/01/2021 # -->
<!-- # # -->
<!-- # Cite this work as: # -->
<!-- # Paul A. Gagniuc. Algorithms in Bioinformatics: Theory and Implementation. John Wiley & Sons, 2021, ISBN: 9781119697961. # -->
<!-- # # -->
<!-- ############################################################################################################################## -->
<script>
document.write('Homo sapiens (3100 Mb): <br>');
document.write('DNA in a haploid cell nucleus: ');
document.write(f(3100) + ' meters<br>');
document.write('DNA in a somatic cell nucleus: ');
document.write((2 * f(3100)) + ' meters<br>');
function f(Mb){return (0.34 * 1000000 * Mb)/1000000000;}
</script>