Bioinformatics in Python: DNA Toolkit. Part 5: Open Reading Frames

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

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

  • @AnonyDz
    @AnonyDz 4 года назад +5

    Great tutorials, please keep up the good work!!

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

    brilliant your tutorials

  • @mahbubah1
    @mahbubah1 Год назад +2

    I have one concern, We have to find the reading frames for RNA sequence not DNA sequence right?

    • @rebelScience
      @rebelScience  Год назад

      Hey! From what I know/understand, there are both, DNA and RNA codon tables. You can use both: en.wikipedia.org/wiki/DNA_and_RNA_codon_tables
      In the later video, we do manage to find a protein sequence with the DNA codon table. One from the NCBI database.

  • @LanaDominkovic
    @LanaDominkovic 3 года назад +2

    great video, hope you will make new videos soon!

  • @elenapopova4569
    @elenapopova4569 Год назад

    Hello, thanks for this course about Bioinformatics. I noticed that only one strand from DNA is transcribed and translated, but I suppose your video with the both strands is only included in the function for additional information?
    Best!

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

    epic tutorials mate, would be helpful if you went over the definition of some functions. For example, appends, means to add to the list etc.

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

      Hey! Thanks. Glad to hear you find my videos useful. The reason I don't go in depth about basic Python functions like list.append() is that, like any other course or a book on a specific topic, you have to have prerequisites, and I do bring this up in my first (intro) video. So you have to be able to write code on a basic level (variables, loops, functions) in order to progress. So this is a Bioinformatics Programming series, not Learn Python series. I also link to and suggest the best videos on learning Python of which we have a lot on the internet. So there is no point in teaching Python again as this has been done so much and done well. Also, if someone still does not know, that .append() appends things to a list, they definitely should watch Python intro videos I suggest in my intro video and others too. So yeah... like every course, there are prerequisites, to make sure 1) course does not turn into 1000 videos 2) People do self-study (look up append() as en example) as this is a crucial skill to have. That said, when we come across less-known Python functions/methods (.maketrans() as an example), we do discuss them. But .count(), .append(), replace()... well this is the very basic stuff and methods/function names already describe their functionality.