You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To make sure you have the entire file properly downloaded, compare the MD5 hash of the file. MD5 hash functions are a compact digital fingerprint of a file. The MD5 hash of the file should be "b16d46bf09c3b8b7909624f1e6c414ce".
Now we will combine the above variables and loopes to test all guides in file gRNAs.txt against all DNA sequences in GRCh38_reformatted.gz. To do so:
655
+
Now we will combine the above variables and loopes to test all guides in file gRNAs.txt against all DNA sequences in GRCh38_reformatted.gz. To do so you need the following steps (also see the hints below):
645
656
646
657
- Use the code above (under "variables") that matches guides against DNA sequences and extracts gene symbols for matched sequences.
647
658
- Place this function into the loop that iterates through the file gRNAs.txt, using the while loop iterating through the file.
648
659
- Store all results (not just the top 30 coming from head -30) of each guide into a file that is named: `results_${guide}.txt`. Place all files into a new folder "day4" - ideally already within the loop.
649
660
- Check a few examples by hand. Do you get the right genes? Do you get the correct number of genes for the guides?
650
661
651
-
To complete the exercise, you can use the following code to extract genes for one guide. Note: The guide needs to be defined first using `guide=[...]`
662
+
Hint: To complete the exercise, you can use the following code to extract genes for one guide. Note: The guide needs to be defined first using `guide=[...]`
0 commit comments