Bioinformatics Tips & Tricks: Hamming Distance

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024

Комментарии • 18

  • @noahh1134
    @noahh1134 4 года назад +3

    Thank you so much for your videos, keeping me active and learning during quarantine!

  • @herbertfountain6251
    @herbertfountain6251 4 года назад

    Great bioinformatics videos! They have all been really useful.

  • @zlj8435
    @zlj8435 2 года назад +1

    Thanks a lot!! Great video!

  • @jessedeng3300
    @jessedeng3300 4 года назад +2

    Fantastic work much appreciated do you have any plans for future series?
    Also could I ask what it is you do for a profession apologies if the question is to personal.
    Thanks once again

    • @rebelScience
      @rebelScience  4 года назад +1

      I have a lot planned. And it is coming very soon =). I was busy with some personal things lately, but now it is all solved, and I am back to working on my videos for you all. You asked "Also could I ask what it is you do for a profession?". As I mentioned in my introduction video and article, I am a programmer and I have been working for different companies for last 10+ years. Doing mostly generic programming for embedded systems, low level code. Mostly C, C++. In last couple of years I have been taking contracting jobs, so I have more free time to work on my own stuff. I have just joined a very nice company in the UK, where I will be helping them with Quality Assurance. I research Bioinformatics in my spare time.

    • @jessedeng3300
      @jessedeng3300 4 года назад

      @@rebelScience Excited to see what's to come. keep up the great work!

  • @sapienthought1103
    @sapienthought1103 4 месяца назад

    def hamming_distance(string1, string2):
    return sum( [ string1[i] != string2[i] for i in range(len(string1)) if len(string1)==len(string2)])

  • @thomasnevolianis8616
    @thomasnevolianis8616 4 года назад +1

    Great video! Btw the functions iterate from 0 to 11.

  • @subodhgaikwad3366
    @subodhgaikwad3366 3 года назад +1

    thanks

  • @nikithkurella7799
    @nikithkurella7799 4 года назад +1

    What is the color theme you are using? Great videos btw!

    • @rebelScience
      @rebelScience  4 года назад

      Hi. Thanks. I have installed some theme a while ago and it was updating and becoming darker on its own haha. I can see I have two things (extensions/themes installed):
      1) Base16 Ocean Dark Extended Theme
      2) Bearded Theme

    • @jackjones-sg6ll
      @jackjones-sg6ll 4 года назад +2

      Sir iam muhammed i compleated my graduation in bachelor of computer applicatin can take the msc bio informatics?

    • @rebelScience
      @rebelScience  4 года назад +1

      Yes, why not ? It is an amazing field to be in. Very important too.

  • @ieremias01
    @ieremias01 3 года назад

    It looks like the code labels the first nucleotide at 0 in the output. Is there any way to change this?

    • @rebelScience
      @rebelScience  3 года назад

      Sorry, can you explain/show at what time in the video this happens? And why is that a problem?

    • @rebelScience
      @rebelScience  3 года назад

      Maybe you are talking about indexing in lists/arrays? If so, then this is how "computers work" and most programming languages start indexing from 0. You should look up array/list indexing videos. This is an important point to be able to process data correctly.