John Blischak Update table number.  about 9 years ago

Commit id: 6c305c3638a34c1f854279fc824f79dd11119e8b

deletions | additions      

       

\subsection{Version your code}  The first step is to learn how to version your own code. In this tutorial, we will run Git from the command line of the Unix shell. Thus we expect readers are already comfortable with navigating a filesystem and running basic commands in such an environment. There are many graphical user interfaces (GUIs) available for running Git (Table x), 1),  which we encourage you to explore, but learning to use Git on the command line is necessary for performing more advanced operations and using Git on a remote server. For the purposes of this tutorial, we'll imagine we have a subdirectory in our home directory named \verb|thesis|, which contains three files. \verb|process.sh| runs some common bioinformatics tools on our raw data, \verb|clean.py| removes bad samples and combines the data into a matrix, and \verb|analyze.R| runs a statistical test and plots the result. To start versioning your code with Git, navigate to your newly created or existing project directory (in this case, \verb|~/thesis|). Start tracking your code by running the command \verb|git init|, which \textit{init}iates a new Git repository.