For each of these questions, provide the commands you used:
- Create a project directory called Exercise. Which commands did you use?
mkdir Exercise
- In the directory, create all the sub-directories you would need for a Bioinformatics Project `mkdir -p data/raw results scripts
- Download this fasta file to the appropriate directory in your project
wget https://raw.githubusercontent.com/kipkurui/IntroductoryLinux/master/Data/nrf1_seq.fa
- Extract the sequence headers and save into a file
sequence_names.txt
in the appropriate directorygrep '>' nrf1_seq.fa > sequence_names.txt
- Save the commands you used in question 4 in a script file
extract_seq.sh