Welcome to this year's CRISPR Jamboree! We will be using this repository as a central location for submitting your code. You will be provided with a cluster environment for development during the Jamboree. Below are instructions for accessing and setting up your computational environment, as well as submitting your code to this repository.
- Access the server at http://34.135.229.230.
- You will be prompted for your login credentials. For your username, enter the prefix of the email you entered on this Google Sheet. For example, for johndoe@gmail.com it is johndoe. You may choose any password.
- The sample data is located at
/mnt/shared/
.
- Open a terminal and run
R -e "IRkernel::installspec()"
. - Refresh your browser.
- Fork this repository to your personal GitHub account by clicking the
Fork
button here. - Set up a fine-grained personal access token here by clicking
Generate new token
, entering a token name like "IGVF CRISPR Jamboree 2024", setting the expiration to "7 days", clickingOnly select repositories
, selecting the forkedCRISPR-JAMBOREE
repository, clickingRepository permissions
, scrolling down toContents
, clickingAccess: No access
, choosingRead and write
, and clickingGenerate token
. Leave this page open. You will need to use the token you generated here in step 7 below. - Go back to the cluster, and open a terminal.
- Clone your forked repository via HTTPS, e.g.
git clone https://github.com/ekatsevi/CRISPR-JAMBOREE.git
. - Navigate to the repository via
cd CRISPR-JAMBOREE
. - Set up
Git
by issuing the following commands:
git config --global user.name "Your name"
, replacing "Your name" with your namegit config --global user.email "Your email"
, replacing "Your email" with your emailgit config --global credential.helper 'store --file ~/.my-credentials'
- Then, establish access to
CRISPR-JAMBOREE
on GitHub by enteringgit push
, followed by your GitHub username, followed by the personal access token you created in step 2. In particular, you will need to copy and paste the personal access token from step 2 into the terminal. Note that for security reasons, the personal access token will not be displayed when you paste it. Just press enter once you have pasted the token.
- Within the
CRISPR-JAMBOREE
repository, enter the directory corresponding to your group (inference
,guide-assignment
, etc). - Within that directory, create a further directory with the name of the method you will be working on (e.g.
wilcoxon-test
). - Work on your code within this directory during the Jamboree, committing as usual.
- At the end of the Jamboree, push your work to your work to your forked repository on GitHub via
git push
. - Then, submit a pull request by navigating to your forked repository on GitHub, then clicking
Contribute
, then clickingOpen pull request
, then clickingCreate pull request
.