Skip to content

Commit

Permalink
Add text to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ccbaumler authored Feb 1, 2024
1 parent 7ac1111 commit 0107bcd
Showing 1 changed file with 57 additions and 2 deletions.
59 changes: 57 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,60 @@
# lab-notes
A simple, easy lab notebook website

## Notes
[docs/notes-test.md](docs/notes-test.md)
## Use
To create your own website:

1. Fork this repo
2. Click `Settings` > `Pages`
3. In the `Source` dropdown, select `Deploy from a branch`
4. In the `Branch` dropdown, select `main` then click `Save`

To update your website with your documents:
1. Consider removing the template file in the `docs` directory
2. Add any number of your own markdown documents the `docs` directory
- The document files should not contain any whitespaces and must end in `.md`
- ~~no whitespaces in file names.md~~
- ~~must-contain-.-md-at-the-end~~
- 2024-week-1.md

Each markdown document added to the `docs` directory will become a link on your webpage landing page. Each link will take you to the rendered markdown document.

A basic document template:
```
---
title: Week number
---
# Goals
In this section I will list the weekly, quarterly, and yearly goals I hope to achieve or have completed this week.
**Weekly:**
- [x] Create a lab notebook repo
- [ ] Read the docs
**Quarterly:**
- [ ] Present my work to the lab
- [ ] Write some python code
- [ ] Write some snakemake files
**Yearly:**
- [ ] Have a well documented project in github that is functional (if not perfect)
# Results
In this section write the verbatim results (eg. copy the code chunks, error reports, plots) that relate to the goals you have achieved this week.
example:
This week I created a lab notebook repo using this method (include the cli arguments and the process below)
# Discussion
In this section explain your results and how they relate to you goals
example:
I am applying for credit this quarter. Therefore, I chose to create a lab notebook repo in github to continue practicing git and github as it is an important tool for biotech/bioinformatics.
# Journal
In this section add anything else you may wish to include.
example:
Nothing additional to comment this week. Work has been taken allot of my time this week. It's finals, I was not able to complete the goals I thought I would. I got a new hamster and it is very fluffy.
```

0 comments on commit 0107bcd

Please sign in to comment.