분류 전체보기(79)
-
drug biotransformation
The metabolism of xenobiotics is often divided into three phases: modification, conjugation, and excretion. These reactions act in concert to detoxify xenobiotics and remove them from cells.
2024.12.29 -
thoughts
"The laws of nature, like thermodynamics or ATP processes, never use 100% of their energy. Even the best batting average is only 0.3. What truly matters is the ability to maintaining energy to pursue over time.""Let’s focus on doing our best in areas where effort and control are within reach.Those who are faithful in small tasks can accomplish greater ones, and whether it’s catching a rabbit or ..
2024.12.27 -
arguments_python
https://youtu.be/e0hEA69d4Dw?si=kxRGgjfNy1lHovA7 https://youtu.be/Raxp3-TustE?si=Jjfdq9t-c4jhVsQS https://youtu.be/HlUWhxhC16w?si=LQC-YE_I6fbb0rQr
2024.12.13 -
Bio Python example code
import Bioprint(Bio.__doc__)Collection of modules for dealing with biological data in Python.The Biopython Project is an international association of developersof freely available Python tools for computational molecular biology.http://biopython.orgDNA sequence handlingfrom Bio import Entrezfrom Bio import SeqIOEntrez.email = "A.N.Other@example.com"with Entrez.efetch( db="nucleotide", rettype..
2024.11.27 -
Python-Basic
Python has 6 data typesNumeric Types: int (integer), float (decimal), complex (complex number)Sequence Types: str(string), list(list), tuple(tuple)Mapping Type: dictSet Types: setBoolean Type: bool (Boolean)Binary Types: bytes, bytearray, memoryview✍🏻 python# 데이터 타입v_str1 = "Niceman" #strv_str2 = "Goodgirl" #strv_bool = True #boolv_float = 10.3 #floatv_int = 7 #intv_complex = 3 + 3jv_dict = { ..
2024.11.27 -
biopython
1. Parsing: Import the desired part from information such as FASTA, FASTQ, GenBank, KEGG, etc.2. Handle the sequence information that was parsed as string and character3. Information on the web such as NCBI, ExPASy, etc. can be imported, so information processing is easy.4. BLAST, sequence alignment, etc. can be analyzed.
2024.11.27