Skip to content

Commit

Permalink
Initializing gh-pages branch
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi18av committed Aug 23, 2024
0 parents commit 2711327
Show file tree
Hide file tree
Showing 154 changed files with 227,979 additions and 0 deletions.
Empty file added .gitattributes
Empty file.
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
.DS_Store
*.log
tmp/

data/mock_data/
data/test_data/

resources/exit_rif/

containers/magma-container-1/resistance_db_who

*/**/*fastq.gz
*/**/*fasta
*/**/*gbk
*/**/*dot
*/**/*svg
*/**/*mp4

.idea
work/
data/full_data
results*
*.nextflow*

conda_envs/magma-env*
containers/**/*yml

samplesheet.csv
magma.sh
.Rproj.user
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# CHANGELOG FOR THE MAGMA PIPELINE VERSIONS

## v2.0.0

1. Update `tb-profiler` to `v6.2.1` along with the `WHO mutations catalog v2` with the database version `30f8bc37df15affa378ebbfbd3e1eb4c5903056e`

2. Addition of `ntm-profiler` with the database FIXME

3. Two new `conda-envs` and containers have been added to the pipeline, relying directly on upstream biocontainers for both `ntm-profiler` and `tb-profiler`

4. Changes to the directory structure

5. Addition of mixed-infections resistance summary script

6. Addition of `low_memory` profile to accommodate lower end infrastructure

7. Updates to the names of parameters for triggering partial/optional workflows


## v1.1.1

Created a parallel workflow for mapping without using the strict seed lenght for use in the structural variant workflow.

Updated TBProfiler to version 5.0.0 and recreated the resistance database to work with the the new version

Updated the summarize resistance script to include the structural variants in the excel output


## v1.0.0

Initial release of the pipeline
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# https://makefiletutorial.com/

run_dev:
nextflow run main.nf -profile conda,dev -entry TEST -resume -with-tower

run_devslurm:
nextflow run main.nf -profile conda,dev_slurm -entry TEST -resume

run_test:
nextflow run main.nf -params-file params/standard.yml -entry test -resume

sync:
bash _resources/sync.sh

sync_devslurm:
bash _resources/sync_slurmhpc.sh
Loading

0 comments on commit 2711327

Please sign in to comment.