Split fasta files based on header
I have 1,500 fasta files with many protein fragments in them. My goal is to separate these fragments into single files and to name these files something intuitive. Here is an example of a fasta file …
Start Learning to Code
I have 1,500 fasta files with many protein fragments in them. My goal is to separate these fragments into single files and to name these files something intuitive. Here is an example of a fasta file …
I am very new to C# programming (2 days in so far), after learning intermediate python and doing a few small projects, I am trying to learn C# But because me knowing python, I am finding C# a little …
How to get only the number with the largest value in the array? I tried in the following example but I don’t get the largest value …, is this the best way?
I just started studying JS and I’m currently simulating something that will apply to my project Basically, I’m trying to generate new Divs with Button on it in order to do something. And I applied the …
Is there a way I could run the function below on pure numpy, so I am trying to get rid of the for loop. I am trying to decrease the runtime of my code. Number_array is added on with each each element …
Hi I want to create a program where I will input different names and I will output it in UPPERCASE FORM. However there’s a bug in my code, can you help me to figure it out? It said “[Error] no …
how do I pair the student array with the grade array? When I find the highest grade the corresponding student should also show, and same with the lowest graded student. I cant figure out how to make …
I have this small geo location dataset. 37.9636140,23.7261360 37.9440840,23.7001760 37.9637190,23.7258230 37.9901450,23.7298770 From a random location. For example this one 37.97570, 23.66721 I need …
The concept is simple, I have two datasets. One is “classes” and one is “attendees”. Each Class has a unique ID and some other stuff, like so (the actual data sets are much bigger):…
I am trying to cut a section of a 2d array specified by x, y and w, h. an example of an array I’m trying to cut would be var arr = [ [‘0’, ‘1’, ‘d’, ‘a’, ‘1’, ‘1’], [‘0’, ‘s’, …