Skip to content

Commit

Permalink
update index, add about, modify footer structure
Browse files Browse the repository at this point in the history
  • Loading branch information
rdnajac committed Sep 8, 2024
1 parent 64f19b4 commit 57c7b89
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 39 deletions.
File renamed without changes
14 changes: 12 additions & 2 deletions custom_theme/main.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
<!-- https://github.com/mkdocs/mkdocs/tree/master/mkdocs/themes/readthedocs -->
{% extends "base.html" %} {% block content %} {{ super() }}
<small><i>Updated: {{ page.meta.file_date }}</i></small>

{% extends "base.html" %}
{% block content %}
{{ super() }}
<small ><i>
Created by
<a href="https://rdnajac.tech/">Ryan D. Najac</a> for the
<a href="https://www.palomerolab.org/">Palomero Lab</a> at the
<a href="https://www.vagelos.columbia.edu/departments-centers/institute-cancer-genetics">Institute for Cancer Genetics</a >.
<br />
Page last updated on {{ page.meta.file_date }}.
</i></small >
{% endblock %}
16 changes: 16 additions & 0 deletions docs/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# About this guide

## Foreword

I was inspired by Tony Narlock's [The Tao of tmux](https://tao-of-tmux.readthedocs.io/)
by take the collection of notes I had written on Linux-based bioinformatic
workflows and turn them into a guide for others to use. After all, science
is a collaborative effort and what good does documentation do if it's not
[FAIR (Findable, Accessible, Interoperable, Reusable)](go-fair.org/fair-principles/)?

## Document structure

These files are written using [GitHub Flavored Markdown \(GFM\)](https://github.github.com/gfm/),
a superset of the [original](https://daringfireball.net/projects/markdown/syntax)
lightweight markup language with plain text formatting syntax.
Try editing this page by clicking on the link in the top right corner!
49 changes: 13 additions & 36 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,54 +1,31 @@
# How-To

![logo](img/CUIMC_Horizontal_Blue.png)

Welcome to the Palomero Lab How-To guide!
This is a collection of instructions and tips for common bioinformatics tasks,
focused on Linux-based workflows and AWS cloud computing.

## What's in this guide?
# How do I science?

Welcome to the [Palomero Lab](https://www.palomerolab.org/) How-To guide!
This guide covers a range of topics including:

- Setting up and using AWS services
- Running bioinformatics tools and pipelines
- Managing data with command-line interfaces
- Writing effective scripts for automation
- Setting up and using AWS services for high-performance computing
- Using Rstudio and Jupyter notebooks for data analysis

> [!NOTE]
> These files are written using [GitHub Flavored Markdown \(GFM\)](https://github.github.com/gfm/),
> a superset of the [original](https://daringfireball.net/projects/markdown/syntax)
> lightweight markup language with plain text formatting syntax.
> GFM gives us additional features (like tables, footnotes, and alerts
> like this) while maintaining readability in plain text.
Read more about [this guide](about.md) or visit the project's original [GitHub
repository](https://github.com/rdnajac/cbmf).

## How to use this guide

- Browse the sidebar to find the topic you're interested in
- Use the search function to look for specific terms or tools
- Each page contains step-by-step instructions and helpful tips
- Code blocks can be copied and pasted directly into your terminal

### Code blocks

Code blocks are formatted like this:
Browse the navigation bar, use the search function,
or click through the pages to find the information you need.
Source code will appear `like this` if it is written inline
or in a code block like the one this:

```sh
# This is a comment
# Click the clipboard icon to copy me!
echo "Hello, world!"
```

You can copy and paste these blocks directly into your terminal by
clicking the clipboard icon in the top right corner of the block.

> [!TIP]
> Checkout this [gist](https://gist.github.com/rdnajac)
> to learn how the clipboard icon works.
## Contributing

Click on the "Edit this page" link at the bottom of any page to suggest changes
or additions. You can also fork this repository and submit a pull request.
> If you get `zsh: command not found: #` when you try to run a copied command,
> run `setopt interactivecomments` first. Read about why
> [here](https://stackoverflow.com/a/11873793/26469286).
Happy computing!
3 changes: 2 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ repo_url: https://github.com/palomeroLab/how-to/
edit_uri: blob/main/docs/
site_description: A collection of how-to guides for the Palomero Lab
site_author: Ryan D. Najac
copyright: Copyright &copy; 2024 <a href="https://rdnajac.tech/">Ryan D. Najac</a>
copyright: <a href="https://www.cuimc.columbia.edu/"><img src="https://github.com/PalomeroLab/how-to/blob/main/assets/CUIMC_Horizontal_Blue.png?raw=true" alt = "CUIMC Logo"></a><br>Copyright &copy; 2024 <a href="https://www.columbia.edu/">Columbia University</a>


theme:
name: readthedocs
Expand Down

0 comments on commit 57c7b89

Please sign in to comment.