How to build a machine learning model to predict antimicrobial peptides (End-to-end Bioinformatics)

preview_player
Показать описание
Antimicrobial resistance is an urgent and global health problem as existing drugs are becoming ineffective against the treatment of antimicrobial infections. In this video, i will be showing you how to build an end-to-end bioinformatics project where we will be building a machine learning model to predict antimicrobial peptides. Particularly, we will be retrieving 2 datasets consisting of antimicrobial peptides (positive set) and non-antimicrobial peptides (negative set). Then, we will be computing some peptide features to quantitatively describe peptides followed by model building and finally model interpretation where we shed light on the key important features important for predicting antimicrobial peptides.

--------------------

⭕ Playlist:
Check out our other videos in the following playlists.

⭕ Recommended Books:

⭕ Stock photos, graphics and videos used on this channel:

⭕ Follow us:

⭕ Disclaimer:
Recommended books and tools are affiliate links that gives me a portion of sales at no cost to you, which will contribute to the improvement of this channel's contents.

#artoflearningdatascience #learndatascience #66daysofdata #datascience #machinelearning #python #bigdata #datamining #bigdata #datascienceworkshop #datasciencetutorial #ai #artificialintelligence #tutorial #dataanalytics #dataanalysis #dataprofessor #ai #datascientist
Рекомендации по теме
Комментарии
Автор

Hi friends! I hope this video was helpful, please make sure to LIKE, SUBSCRIBE, COMMENT and SHARE!
** Support this Channel

DataProfessor
Автор

Discovering you is the best thing that have ever happened to me. Needless to say that my bio- and Cheminformatics skills have increased significantly. Thank you so much DataProfessor.

emmanuelonah
Автор

We biologists sincerely appreciate your efforts and love you Data Professor !!

jasdeep
Автор

Thank you for keeping our request. Biologists love data professor

angsumandas
Автор

Starting my self learning Bioinformatics journey and your channel is just awesome! Thank you for the guidance ❤

baotao
Автор

I watched it before but now I'm here to comment and share it!

Ali-pfor
Автор

It's awesome how well you show how to use data science in the bioinformatics field Chanin! Great video!

mariopaul
Автор

Thank you. I am going to buildup some ML tools for drug discovery with bioinformatic data analysis from your great work!

suecheng
Автор

Thanks a lot Data Professor... This is very useful to us. Thank you

VyshnavieRSarma-rbur
Автор

So beautiful project it is. I learnt a lot. Thank you Data Professor.

qaziacademy
Автор

Can you explain what is meant by negative and positive? The features label here is a bit confusing

salma-amlas
Автор

Thank you Data Professor 🙏for this video on AMP activity prediction. I am working on AMP and have synthesised 2. My question is if we want to predict like activity value like MIC or IC50 of AMP, can you suggest how to get the data so as to try it out.

abdulmalikaliyu
Автор

can we relate this info in this video to the molecular docking somehow? or have you ever perform molecular docking ?

username
Автор

Any suggestions what can I modify in this project on my own if any

zadilkhwaja
Автор

Thank you for this great video! Can you please make a video to make input data to predict Antibiotic resistance by machine learning. How bioinformatics tools will be used to make the input data? Please

asadmustafa
Автор

2:00 GPS raghava is my Prof. at IIITD, India

Ajeet-Yadav-IIITD
Автор

Hi data professor, thanks for creating and sharing these amazing videos. I need your insight on a question bothering me. How to tackle the following kind of use case. Let’s say I am analysing the sells of a shop and the shop keeper question is which item should I present in the same area with others so I can increase my average revenue. To help the analysis I have all the items in the shop with their location over the last 10 years and on the other hand I have all the purchase my customers did over the last 10 years. How would you conduct the analysis ? Geolocation of the items associated with basket analysis? Thanks for your recommendation

luctiber
Автор

Hi Dataprofessor, Thanks again for your inspiring video. I have one additional question.
What technique should we use to scale feature values when combining several different types of individual features? Can we simply concatenate the matrices without performing any further processing

MontazerMontazer-is
Автор

Hello - do you know why I'm getting "'wget' is not recognized as an internal or external command" when running Jupyter through Anaconda?

clivedarwell
Автор

I am getting error message

TypeError Traceback (most recent call last)
in <cell line: 21>()
19 return df
20
---> 21 feature = feature_calc(pos, neg, aac) # AAC
22 #feature = feature_calc(pos, neg, dpc) # DPC
23 feature

in feature_calc(po, ne, feature_name)
6 def feature_calc(po, ne, feature_name):
7 # Calculate feature
----> 8 po_feature = feature_name(po)
9 ne_feature = feature_name(ne)
10 # Create class labels

TypeError: 'str' object is not callable

Ashis_Udgata