Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In class, we will explore and characterize the raw data.  

Anchor
hw_step1
hw_step1

Expand
titleThis is the first part of your homework due 11/25...

Log in to your appsoma.com account

Select the "Code" tab if you are not already there.

Select "Biolinux-03" from the drop-down menu to the right of the RUN button

Select "Shell"

 

Now, within the shell window, use some of the linux commands you've learned to move your self into a working directory (called "scratch") and link to the data:

Code Block
cd scratch
mkdir rawdata
cd rawdata;
ln -s /home/scott/e0/* . ;
cd ..;
mkdir finaldata;
cd finaldata;
ln -s /home/scott/e3/* .;
cd ..;

...