These exercises follow the material in the GitHub section of Reproducible R.

  1. Command line Git
mkdir GitHub_Training
cd GitHub_Training
git init
touch README.md
echo 'The Twilight Zone' >> README.md
cp ../data/dayOfWeek.r .
git add README.md
git commit -m"create README"
git commit -m"add days of week script"
git remote add origin https://github.com/BRC-RU/GitHub_Training.git
git push origin master
  1. RStudio Git Integration
  1. Workflow and Collaboration Next we will practice the GitHub workflow. To do this we will use the repository here. This is my collection of GIFS for how this training session makes me feel, and you can add to this.
  1. Build a Docker image from Github
# clone using git on terminal
git clone https://github.com/dougbarrows/reproducibility_exercise

# navigate to the directory we just made from cloning
cd reproducibility_exercise
## Edited Dockerfile

# build the image
docker image build -t salmon_with_ggplot2 .
docker container run --rm \
          -v .:/home/rstudio \
          -p 8787:8787 \
           -e PASSWORD=password123 \
           salmon_with_ggplot2
# open up the RStudio session at http://localhost:8787/

# activate the conda environment
Herper::local_CondaEnv("pipe_env", "/home/miniconda")
system("salmon --version")

# index and count with salmon
system("salmon index -t transcripts.fasta -i transcripts_index")
system("salmon quant -i transcripts_index -l A -1 reads_1.fastq -2 reads_2.fastq --output sample_counts")

library(ggplot2)
counts <- read.table("sample_counts/quant.sf", header = T)
ggplot(counts, aes(x = Name, y = NumReads)) + 
  geom_bar(stat = "identity") +
  theme(axis.text.x = element_text(angle = 90, vjust = 0.5, hjust=1))
ggsave("exercise_plot.pdf")

# look at files that have changed in git repo
git status

# look at files that have changed in git repo
git add Dockerfile exercise_plot.pdf
git commit -m "added ggplot and plot"
git push origin main