-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Development branch for the next release (#29)
This is a PR for the next version of FIRE that will be more robust to denovo assemblies. Some feats: Save the Fiber-seq data in cram format Replace ucsc utilities with bigtools Replace some bedtools opts with gia Switch to polars for coverage calculation Rename config options to uppercase variables fix #28 incorrect counts in a plot fix #26 so that fire appears to be deterministic now; however, this is not yet guaranteed.
- Loading branch information
Showing
22 changed files
with
425 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Install | ||
|
||
You will need **snakemake** which you can install using conda/mamba, e.g.: | ||
``` | ||
mamba create -c conda-forge -c bioconda -n snakemake 'snakemake>=8.4' | ||
``` | ||
|
||
Finally, if you wish to distribute jobs across a cluster you will need to install the appropriate [snakemake executor plugin](https://snakemake.github.io/snakemake-plugin-catalog/). For example, to use SLURM you can install the `snakemake-executor-slurm` plugin using pip: | ||
``` | ||
pip install snakemake-executor-plugin-slurm | ||
``` | ||
|
||
We recommend adding a snakemake conda prefix to your `bashrc`, e.g. in the Stergachis lab add: | ||
```bash | ||
export SNAKEMAKE_CONDA_PREFIX=/mmfs1/gscratch/stergachislab/snakemake-conda-envs | ||
export APPTAINER_CACHEDIR=/mmfs1/gscratch/stergachislab/snakemake-conda-envs/apptainer-cache | ||
``` | ||
Then snakemake installs all the additional requirements as conda envs in that directory. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#theme: jekyll-theme-minimal | ||
#theme: minima | ||
remote_theme: jekyll/minima | ||
#logo: /assets/img/fiber_tools_grey.png | ||
|
||
minima: | ||
skin: dark | ||
|
||
defaults: | ||
- scope: | ||
path: "README.md" | ||
values: | ||
permalink: "index.html" | ||
|
||
exclude: | ||
- target | ||
- models | ||
- dists | ||
- tmp.* | ||
- temp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: runner | ||
channels: | ||
- numba | ||
- conda-forge | ||
- bioconda | ||
- defaults | ||
dependencies: | ||
- tqdm | ||
- numpy | ||
- pandas | ||
- pip | ||
- pip: | ||
- pysam |
Oops, something went wrong.