Currently annotation calling is one of the largest bottlenecks of the pipeline. It is currently split into several rules and accompanying scripts.
Rules
- peak_Transcripts
- peak_ExonIntron
- peak_RMSK
- peak_Transcripts
- peak_junctions
- peak_process
- project_annotations
Scripts
The general workflow is to run each annotation type separately before merging into one RMD file. This requires a significant amount of time, and is generating individual jobs per sample per rule, which also utilizes more Biowulf resources than maybe necessary.
Goals for the re-write
- Speed up performance
- Reduce the number of input/output files required for execution
- Transfer all file creation from R files to snakemake
- Reduce the number of rules required without sacrificing speed considerably
Currently annotation calling is one of the largest bottlenecks of the pipeline. It is currently split into several rules and accompanying scripts.
Rules
Scripts
05_Anno_Process.R
The general workflow is to run each annotation type separately before merging into one RMD file. This requires a significant amount of time, and is generating individual jobs per sample per rule, which also utilizes more Biowulf resources than maybe necessary.
Goals for the re-write