Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecuoco authored Apr 4, 2024
0 parents commit e8e6117
Show file tree
Hide file tree
Showing 172 changed files with 8,563 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll with GitHub Pages dependencies preinstalled

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v1
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./website
destination: ./website/_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./website/_site

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
modules/02-sequencing/data
modules/02-sequencing/ref
modules/02-sequencing/tmp
**/*.h5ad
**/*.ipynb_checkpoints
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[submodule "07-softengteam"]
path = modules/07-softengteam
url = https://github.com/bioinfo-ucsd/BISB-Bootcamp-2022-module-07
[submodule "docker"]
path = docker
url = https://github.com/ucsd-ets/BNFO000.git
[submodule "modules/02-softengteam"]
path = modules/02-softengteam
url = https://github.com/bioinfo-ucsd/BISB-Bootcamp-module-07
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# BISB Bootcamp 2023

This is the course repository for the 2023 UC San Diego Bioinformatics & Systems Biology (BISB) PhD program Bootcamp. To learn more about bootcamp, please visit the [course website](https://bioinfo-ucsd.github.io/BISB-Bootcamp-2023/).

This repo is structured as follows:

```bash
.
├── README.md # this file
├── website # course website
└── modules # materials for each module
```

To contribute to the course website, please follow the instructions at [./docs/README.md](./docs/README.md).

To contribute to the course materials, please follow the instructions at [./modules/README.md](./modules/README.md).

## Adapting this repository for future iterations of BISB Bootcamp

Click [Use this template](https://github.com/bioinfo-ucsd/BISB-Bootcamp-2023/generate) to create a new repo for a future bootcamp. Then edit away!
1 change: 1 addition & 0 deletions docker
Submodule docker added at 30321b
1 change: 1 addition & 0 deletions dope.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
data science is rad
35 changes: 35 additions & 0 deletions env.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: bootcamp
channels:
- conda-forge
- bioconda
- nodefaults
dependencies:
# general use
- conda-forge::gh
- conda-forge::awscli
- conda-forge::wget
- conda-forge::nbconvert
- conda-forge::tree
# Command Line
- bioconda::samtools>=1.15
- bioconda::bcftools>=1.15
- bioconda::bedtools>=2.30.0
- bioconda::picard>=2.27.4
- bioconda::gatk4
- bioconda::fastqc
- bioconda::multiqc
# Python
- conda-forge::python>=3.7
- conda-forge::pip
- conda-forge::biopython
- conda-forge::ipykernel
- conda-forge::numpy<=1.21
- conda-forge::pandas
- conda-forge::scanpy
# R
- conda-forge::r-base>=4.0
- conda-forge::r-essentials
- conda-forge::r-irkernel
# pip
- pip:
- igv-notebook
1 change: 1 addition & 0 deletions modules/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.ipynb_checkpoints**
Loading

0 comments on commit e8e6117

Please sign in to comment.