SlideShare a Scribd company logo
1 of 22
some other API
Mario Lovrić
Outline
• Kemoinformatika
• QSAR
• MOPAC
• RDkit
1
Stara škola:
MeetupChemtalk
Kemoinformatika
Struktura
-pretpostavljena
aktivnost
Dizajn
-sintetski put
Početni materijali
Aktivnost
-in vitro
-in vivo
Prodaja?
MeetupChemtalk
Kemoinformatika
Struktura
-prijedlog prema
aktivnosti
X molekula
Dizajn
-simulacija reakcije
Aktivnost
-in silico
Kemoinformatika
• Kemoinformatika = korištenje računalnih alata za rješavanje kemijskih
problema
• molekularna mehanika (molekula je oscilator)
• (semi-)empirijske metode
• ab initio kvantna kemija
• Schrödinger
4
MeetupChemtalk
QSARmodeliranje
• Aktivnosti: toksičnost, topljivost, biološka
aktivnosti
• Struktura: molekulska težina, vrelište,
naboji, orbitale
MeetupChemtalk
QSAR-deskriptori
Glavne grupe molekularnih deskriptora:
 Fizikalno-kemijski (log P, log D, molarna
refraktivnost, pKa, topljivost ...)
 Veličina/oblik (molekularne težine, momenti
inercije ...)
 Topološki (indeksi povezanosti ...)
 Vodikove veze (broj vodikovih donora i akceptora)
 Elektrostatski (formalni naboj, parcijalni naboji
atoma, dipolni momenti i vektori, HOMO i LUMO
energija ...)
 Deskriptori temeljeni na prebrojavanju atoma
strukturnih fragmenata
MeetupChemtalk
QSARmodeliranje(Toksičnost)
MeetupChemtalk
QSARmodeliranje(Toksičnost)
MeetupChemtalk
QSARmodeliranje
Zašto Python?
 Automatizacija
 Konverzija
 Generiranje deskriptora
 Ispitivanje korelacije
 Obrada rezultata
MeetupChemtalk
TOOLS-FORMATI
• Razni formati zapisa molekula (input)
struktura:
CC(=O)OC1=CC=CC=C1C(O)=O
SMILES .smi
.mol .mop - CARTESIAN
C 1,37169 1 -0,15132 1 -0,34959 1
C 2,76445 1 0,40647 1 -0,35851 1
O 3,10565 1 1,43188 1 0,21058 1
O 3,58382 1 -0,45421 1 -1,09985 1
C 4,97372 1 -0,22679 1 -1,24483 1
C 5,48511 1 1,06344 1 -1,41149 1
C 6,86118 1 1,25315 1 -1,55109 1
C 7,72426 1 0,15903 1 -1,55109 1
C 7,21133 1 -1,13261 1 -1,42353 1
C 5,83049 1 -1,33986 1 -1,27999 1
C 5,37219 1 -2,74860 1 -1,14834 1
O 6,09811 1 -3,63982 1 -0,73331 1
O 4,11925 1 -2,98371 1 -1,58894 1
H 0,69836 1 0,55992 1 0,13731 1
H 1,35569 1 -1,09121 1 0,20772 1
H 1,02557 1 -0,30601 1 -1,37472 1
H 4,83518 1 1,93435 1 -1,42367 1
H 7,26137 1 2,25976 1 -1,65239 1
H 8,79703 1 0,31053 1 -1,64998 1
H 7,89460 1 -1,98132 1 -1,43564 1
H 3,66871 1 -2,19109 1 -1,93641 1
MeetupChemtalk
TOOLS-MOPAC
• FINAL HEAT OF FORMATION = 185.21555 KCAL/MOL
• TOTAL ENERGY = -2420.73389 EV
• ELECTRONIC ENERGY = -9044.42051 EV
• CORE-CORE REPULSION = 6623.68661 EV
•
• GRADIENT NORM = 0.74904
• IONIZATION POTENTIAL = 9.968638 EV
• HOMO LUMO ENERGIES (EV) = -9.969 -2.713
• NO. OF FILLED LEVELS = 30
• MOLECULAR WEIGHT = 172.097
• MOLECULAR DIMENSIONS (Angstroms)
• Atom Atom Distance
• O 13 O 3 9.07979
• O 12 C 7 6.68925
• C 5 C 7 0.08515
• JEDNA PO JEDNA!! KONVERZIJA??
PROBLEM – KONVERZIJA??
 import subprocess, os
 bab_adr='C:/Program Files (x86)/OpenBabel-2.3.2/babel.exe'
 for file in os.listdir('Z:/'):
 if file.endswith ('.smiles'):
 smile_file='Z:/'+str(file)
 mop_file='Z:/'+str(file)+'.mop'
 subprocess.call([bab_adr, '-ismi',str(smile_file),'-omopcrt',str(mop_file),'--gen2d', '-xkAM1' ])
MOPAC RUN
 mopac_adr='C:/Program Files/MOPAC/MOPAC2012.exe
 mop_path='M:/2015-05-30/mop
 for pacfile in os.listdir(mop_path):
if pacfile.endswith('.mop'):
mopfile=str(mop_path)+'/'+str(pacfile)
subprocess.call([mopac_adr, str(mopfile)])
MeetupChemtalk
TOOLS–MOPAC-PYTHON
MeetupChemtalk
To include names in the mol blocks, set the molecule’s “_Name” property:
 m2=Chem.MolFromSmiles('C1CCC1')
 m2.SetProp("_Name","cyclobutane")
 print Chem.MolToMolBlock(m2)
cyclobutane
RDKit
4 4 0 0 0 0 0 0 0 0999 V2000
0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1 2 1 0
2 3 1 0
3 4 1 0
4 1 1 0
M END
MeetupChemtalk
TOOLS–RDkit
You can either include 2D coordinates (i.e. a depiction):
 from rdkit.Chem import AllChem
 AllChem.Compute2DCoords(m2)
0
 print Chem.MolToMolBlock(m2)
cyclobutane
RDKit 2D
4 4 0 0 0 0 0 0 0 0999 V2000
1.0607 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-0.0000 -1.0607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
-1.0607 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
0.0000 1.0607 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
1 2 1 0
2 3 1 0
3 4 1 0
4 1 1 0
M END
MeetupChemtalk
TOOLS–RDkit
 AllChem.EmbedMolecule(m2)
0
 AllChem.UFFOptimizeMolecule(m2)
0
 print Chem.MolToMolBlock(m2)
cyclobutane
RDKit 3D
4 4 0 0 0 0 0 0 0 0999 V2000
-0.7883 0.5560 -0.2718 C 0 0 0 0 0 0 0 0 0 0 0 0
-0.4153 -0.9091 -0.1911 C 0 0 0 0 0 0 0 0 0 0 0 0
0.7883 -0.5560 0.6568 C 0 0 0 0 0 0 0 0 0 0 0 0
0.4153 0.9091 0.5762 C 0 0 0 0 0 0 0 0 0 0 0 0
1 2 1 0
2 3 1 0
3 4 1 0
4 1 1 0
M END
MeetupChemtalk
TOOLS–RDkit
m3 = Chem.AddHs(m2)
m3.GetNumAtoms()
12
m4 = Chem.RemoveHs(m3)
m4.GetNumAtoms()
4
MeetupChemtalk
TOOLS–RDkit
Substructure matching can be done using query molecules
built from SMARTS:
m = Chem.MolFromSmiles('c1ccccc1O')
patt = Chem.MolFromSmarts('ccO')
m.HasSubstructMatch(patt)
True
m.GetSubstructMatch(patt)
(0, 5, 6)
MeetupChemtalk
TOOLS–RDkit
ps = rxn.RunReactants((Chem.MolFromSmiles('OC=C'),
Chem.MolFromSmiles('C=CC(N)=C')))
Chem.MolToSmiles(ps[0][0])
'NC1=CCCC(O)C1'
MeetupChemtalk
TOOLS–RDkit
• http://www.rdkit.org/
• http://openmopac.net/
• https://github.com/mariolovric
• Dale Hoff et al. , Predicting the Toxicities of Chemicals to Aquatic Animal
Species, 2010
MeetupChemtalk
Ref.
Hvala na pažnji.
21

More Related Content

Similar to some_other_API

Holistic modelling of mineral processing plants a practical approach
Holistic modelling of mineral processing plants   a practical approachHolistic modelling of mineral processing plants   a practical approach
Holistic modelling of mineral processing plants a practical approachBasdew Rooplal
 
The PubChemQC Project
The PubChemQC ProjectThe PubChemQC Project
The PubChemQC ProjectMaho Nakata
 
Four Hats of Math: CFD
Four Hats of Math: CFDFour Hats of Math: CFD
Four Hats of Math: CFDTomasz Bednarz
 
How to Leverage Artificial Intelligence to Accelerate Data Collection and Ana...
How to Leverage Artificial Intelligence to Accelerate Data Collection and Ana...How to Leverage Artificial Intelligence to Accelerate Data Collection and Ana...
How to Leverage Artificial Intelligence to Accelerate Data Collection and Ana...aimsnist
 
Optimization for the fabrication of ternary halide perovskite solar cells via...
Optimization for the fabrication of ternary halide perovskite solar cells via...Optimization for the fabrication of ternary halide perovskite solar cells via...
Optimization for the fabrication of ternary halide perovskite solar cells via...CHUN-HAO KUNG
 
Volkswagen Presentation to EPA on Diesel Engine Future (2006)
Volkswagen Presentation to EPA on Diesel Engine Future (2006)Volkswagen Presentation to EPA on Diesel Engine Future (2006)
Volkswagen Presentation to EPA on Diesel Engine Future (2006)Juan Barnett
 
Introduction to Hadron Structure from Lattice QCD
Introduction to Hadron Structure from Lattice QCDIntroduction to Hadron Structure from Lattice QCD
Introduction to Hadron Structure from Lattice QCDChristos Kallidonis
 
Copper 2013 PY82_04-12-2013_1430 hrs (7).pdf
Copper 2013 PY82_04-12-2013_1430 hrs (7).pdfCopper 2013 PY82_04-12-2013_1430 hrs (7).pdf
Copper 2013 PY82_04-12-2013_1430 hrs (7).pdfleovoisin
 
Direct methanol fuel cell and proton Exchange membranes i
Direct methanol fuel cell and proton Exchange membranes iDirect methanol fuel cell and proton Exchange membranes i
Direct methanol fuel cell and proton Exchange membranes iShahXubair
 
Elektrisch vervoer van de toekomst
Elektrisch vervoer van de toekomstElektrisch vervoer van de toekomst
Elektrisch vervoer van de toekomstDutch Power
 
Structural Design Calculations of Cement Mill 4
Structural Design Calculations of Cement Mill 4 Structural Design Calculations of Cement Mill 4
Structural Design Calculations of Cement Mill 4 Benedict Banquil
 
Europe User Conference: ADNOC optimization of hydrocracking process as a func...
Europe User Conference: ADNOC optimization of hydrocracking process as a func...Europe User Conference: ADNOC optimization of hydrocracking process as a func...
Europe User Conference: ADNOC optimization of hydrocracking process as a func...KBC (A Yokogawa Company)
 
23CH60R58Pradeep Kumar Mudavath bhai ki ppt.pptx
23CH60R58Pradeep Kumar Mudavath bhai ki ppt.pptx23CH60R58Pradeep Kumar Mudavath bhai ki ppt.pptx
23CH60R58Pradeep Kumar Mudavath bhai ki ppt.pptxtajeveribi
 
Saponification Presentation
Saponification PresentationSaponification Presentation
Saponification PresentationJennifer Kellogg
 
2021 recent trends on high capacity cathode
2021 recent trends on high capacity cathode2021 recent trends on high capacity cathode
2021 recent trends on high capacity cathodekzfung2
 
Jcup 3 (2012) Presentation: Lexichem, a new Era. By Ed Cannon
Jcup 3 (2012) Presentation: Lexichem, a new Era.  By Ed Cannon Jcup 3 (2012) Presentation: Lexichem, a new Era.  By Ed Cannon
Jcup 3 (2012) Presentation: Lexichem, a new Era. By Ed Cannon Ed Cannon
 
Open Science Data Repository - Dataledger
Open Science Data Repository - DataledgerOpen Science Data Repository - Dataledger
Open Science Data Repository - DataledgerAlexandru Korotcov
 

Similar to some_other_API (20)

Holistic modelling of mineral processing plants a practical approach
Holistic modelling of mineral processing plants   a practical approachHolistic modelling of mineral processing plants   a practical approach
Holistic modelling of mineral processing plants a practical approach
 
The PubChemQC Project
The PubChemQC ProjectThe PubChemQC Project
The PubChemQC Project
 
Four Hats of Math: CFD
Four Hats of Math: CFDFour Hats of Math: CFD
Four Hats of Math: CFD
 
CO2QUEST Typical Impurities in Captured CO2 Streams - Richard T. J. Porter at...
CO2QUEST Typical Impurities in Captured CO2 Streams - Richard T. J. Porter at...CO2QUEST Typical Impurities in Captured CO2 Streams - Richard T. J. Porter at...
CO2QUEST Typical Impurities in Captured CO2 Streams - Richard T. J. Porter at...
 
How to Leverage Artificial Intelligence to Accelerate Data Collection and Ana...
How to Leverage Artificial Intelligence to Accelerate Data Collection and Ana...How to Leverage Artificial Intelligence to Accelerate Data Collection and Ana...
How to Leverage Artificial Intelligence to Accelerate Data Collection and Ana...
 
RDKit Gems
RDKit GemsRDKit Gems
RDKit Gems
 
Optimization for the fabrication of ternary halide perovskite solar cells via...
Optimization for the fabrication of ternary halide perovskite solar cells via...Optimization for the fabrication of ternary halide perovskite solar cells via...
Optimization for the fabrication of ternary halide perovskite solar cells via...
 
Volkswagen Presentation to EPA on Diesel Engine Future (2006)
Volkswagen Presentation to EPA on Diesel Engine Future (2006)Volkswagen Presentation to EPA on Diesel Engine Future (2006)
Volkswagen Presentation to EPA on Diesel Engine Future (2006)
 
Introduction to Hadron Structure from Lattice QCD
Introduction to Hadron Structure from Lattice QCDIntroduction to Hadron Structure from Lattice QCD
Introduction to Hadron Structure from Lattice QCD
 
Copper 2013 PY82_04-12-2013_1430 hrs (7).pdf
Copper 2013 PY82_04-12-2013_1430 hrs (7).pdfCopper 2013 PY82_04-12-2013_1430 hrs (7).pdf
Copper 2013 PY82_04-12-2013_1430 hrs (7).pdf
 
Direct methanol fuel cell and proton Exchange membranes i
Direct methanol fuel cell and proton Exchange membranes iDirect methanol fuel cell and proton Exchange membranes i
Direct methanol fuel cell and proton Exchange membranes i
 
Elektrisch vervoer van de toekomst
Elektrisch vervoer van de toekomstElektrisch vervoer van de toekomst
Elektrisch vervoer van de toekomst
 
Structural Design Calculations of Cement Mill 4
Structural Design Calculations of Cement Mill 4 Structural Design Calculations of Cement Mill 4
Structural Design Calculations of Cement Mill 4
 
Understanding and Predicting CO2 Properties for CCS Transport, Richard Graham...
Understanding and Predicting CO2 Properties for CCS Transport, Richard Graham...Understanding and Predicting CO2 Properties for CCS Transport, Richard Graham...
Understanding and Predicting CO2 Properties for CCS Transport, Richard Graham...
 
Europe User Conference: ADNOC optimization of hydrocracking process as a func...
Europe User Conference: ADNOC optimization of hydrocracking process as a func...Europe User Conference: ADNOC optimization of hydrocracking process as a func...
Europe User Conference: ADNOC optimization of hydrocracking process as a func...
 
23CH60R58Pradeep Kumar Mudavath bhai ki ppt.pptx
23CH60R58Pradeep Kumar Mudavath bhai ki ppt.pptx23CH60R58Pradeep Kumar Mudavath bhai ki ppt.pptx
23CH60R58Pradeep Kumar Mudavath bhai ki ppt.pptx
 
Saponification Presentation
Saponification PresentationSaponification Presentation
Saponification Presentation
 
2021 recent trends on high capacity cathode
2021 recent trends on high capacity cathode2021 recent trends on high capacity cathode
2021 recent trends on high capacity cathode
 
Jcup 3 (2012) Presentation: Lexichem, a new Era. By Ed Cannon
Jcup 3 (2012) Presentation: Lexichem, a new Era.  By Ed Cannon Jcup 3 (2012) Presentation: Lexichem, a new Era.  By Ed Cannon
Jcup 3 (2012) Presentation: Lexichem, a new Era. By Ed Cannon
 
Open Science Data Repository - Dataledger
Open Science Data Repository - DataledgerOpen Science Data Repository - Dataledger
Open Science Data Repository - Dataledger
 

Recently uploaded

Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptxUnlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptxanandsmhk
 
GFP in rDNA Technology (Biotechnology).pptx
GFP in rDNA Technology (Biotechnology).pptxGFP in rDNA Technology (Biotechnology).pptx
GFP in rDNA Technology (Biotechnology).pptxAleenaTreesaSaji
 
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...Sérgio Sacani
 
Biological Classification BioHack (3).pdf
Biological Classification BioHack (3).pdfBiological Classification BioHack (3).pdf
Biological Classification BioHack (3).pdfmuntazimhurra
 
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...anilsa9823
 
Spermiogenesis or Spermateleosis or metamorphosis of spermatid
Spermiogenesis or Spermateleosis or metamorphosis of spermatidSpermiogenesis or Spermateleosis or metamorphosis of spermatid
Spermiogenesis or Spermateleosis or metamorphosis of spermatidSarthak Sekhar Mondal
 
Presentation Vikram Lander by Vedansh Gupta.pptx
Presentation Vikram Lander by Vedansh Gupta.pptxPresentation Vikram Lander by Vedansh Gupta.pptx
Presentation Vikram Lander by Vedansh Gupta.pptxgindu3009
 
Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |
Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |
Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |aasikanpl
 
Natural Polymer Based Nanomaterials
Natural Polymer Based NanomaterialsNatural Polymer Based Nanomaterials
Natural Polymer Based NanomaterialsAArockiyaNisha
 
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...Sérgio Sacani
 
Animal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptxAnimal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptxUmerFayaz5
 
Botany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdfBotany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdfSumit Kumar yadav
 
G9 Science Q4- Week 1-2 Projectile Motion.ppt
G9 Science Q4- Week 1-2 Projectile Motion.pptG9 Science Q4- Week 1-2 Projectile Motion.ppt
G9 Science Q4- Week 1-2 Projectile Motion.pptMAESTRELLAMesa2
 
Chemistry 4th semester series (krishna).pdf
Chemistry 4th semester series (krishna).pdfChemistry 4th semester series (krishna).pdf
Chemistry 4th semester series (krishna).pdfSumit Kumar yadav
 
Hubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroidsHubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroidsSérgio Sacani
 
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...Sérgio Sacani
 
Artificial Intelligence In Microbiology by Dr. Prince C P
Artificial Intelligence In Microbiology by Dr. Prince C PArtificial Intelligence In Microbiology by Dr. Prince C P
Artificial Intelligence In Microbiology by Dr. Prince C PPRINCE C P
 
SOLUBLE PATTERN RECOGNITION RECEPTORS.pptx
SOLUBLE PATTERN RECOGNITION RECEPTORS.pptxSOLUBLE PATTERN RECOGNITION RECEPTORS.pptx
SOLUBLE PATTERN RECOGNITION RECEPTORS.pptxkessiyaTpeter
 

Recently uploaded (20)

Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptxUnlocking  the Potential: Deep dive into ocean of Ceramic Magnets.pptx
Unlocking the Potential: Deep dive into ocean of Ceramic Magnets.pptx
 
GFP in rDNA Technology (Biotechnology).pptx
GFP in rDNA Technology (Biotechnology).pptxGFP in rDNA Technology (Biotechnology).pptx
GFP in rDNA Technology (Biotechnology).pptx
 
Engler and Prantl system of classification in plant taxonomy
Engler and Prantl system of classification in plant taxonomyEngler and Prantl system of classification in plant taxonomy
Engler and Prantl system of classification in plant taxonomy
 
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
PossibleEoarcheanRecordsoftheGeomagneticFieldPreservedintheIsuaSupracrustalBe...
 
Biological Classification BioHack (3).pdf
Biological Classification BioHack (3).pdfBiological Classification BioHack (3).pdf
Biological Classification BioHack (3).pdf
 
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
 
Spermiogenesis or Spermateleosis or metamorphosis of spermatid
Spermiogenesis or Spermateleosis or metamorphosis of spermatidSpermiogenesis or Spermateleosis or metamorphosis of spermatid
Spermiogenesis or Spermateleosis or metamorphosis of spermatid
 
Presentation Vikram Lander by Vedansh Gupta.pptx
Presentation Vikram Lander by Vedansh Gupta.pptxPresentation Vikram Lander by Vedansh Gupta.pptx
Presentation Vikram Lander by Vedansh Gupta.pptx
 
Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |
Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |
Call Us ≽ 9953322196 ≼ Call Girls In Mukherjee Nagar(Delhi) |
 
Natural Polymer Based Nanomaterials
Natural Polymer Based NanomaterialsNatural Polymer Based Nanomaterials
Natural Polymer Based Nanomaterials
 
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
 
CELL -Structural and Functional unit of life.pdf
CELL -Structural and Functional unit of life.pdfCELL -Structural and Functional unit of life.pdf
CELL -Structural and Functional unit of life.pdf
 
Animal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptxAnimal Communication- Auditory and Visual.pptx
Animal Communication- Auditory and Visual.pptx
 
Botany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdfBotany 4th semester series (krishna).pdf
Botany 4th semester series (krishna).pdf
 
G9 Science Q4- Week 1-2 Projectile Motion.ppt
G9 Science Q4- Week 1-2 Projectile Motion.pptG9 Science Q4- Week 1-2 Projectile Motion.ppt
G9 Science Q4- Week 1-2 Projectile Motion.ppt
 
Chemistry 4th semester series (krishna).pdf
Chemistry 4th semester series (krishna).pdfChemistry 4th semester series (krishna).pdf
Chemistry 4th semester series (krishna).pdf
 
Hubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroidsHubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroids
 
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
All-domain Anomaly Resolution Office U.S. Department of Defense (U) Case: “Eg...
 
Artificial Intelligence In Microbiology by Dr. Prince C P
Artificial Intelligence In Microbiology by Dr. Prince C PArtificial Intelligence In Microbiology by Dr. Prince C P
Artificial Intelligence In Microbiology by Dr. Prince C P
 
SOLUBLE PATTERN RECOGNITION RECEPTORS.pptx
SOLUBLE PATTERN RECOGNITION RECEPTORS.pptxSOLUBLE PATTERN RECOGNITION RECEPTORS.pptx
SOLUBLE PATTERN RECOGNITION RECEPTORS.pptx
 

some_other_API