CCBR / RENEE

A comprehensive quality-control and quantification RNA-seq pipeline
https://CCBR.github.io/RENEE/
MIT License
4 stars 4 forks source link

Re-build human genome annotations with GDC fasta #136

Closed kelly-sovacool closed 2 months ago

kelly-sovacool commented 5 months ago

Changes

See the snakemake workflow here for how these were built: https://github.com/CCBR/build-renee-refs

Issues

PR Checklist

(~Strikethrough~ any points that are not applicable.)

kelly-sovacool commented 3 months ago

Running tests.

RENEE_REPO=/data/CCBR_Pipeliner/Pipelines/RENEE/renee-dev-sovacool
for genome in $(ls $RENEE_REPO/config/genomes/biowulf/ | grep hg |  sed 's/.json//'); do
    $RENEE_REPO/bin/renee run \
        --input $RENEE_REPO/.tests/*.R1.fastq.gz \
        --genome $genome \
        --mode slurm \
        --output /data/$USER/renee_test_$genome \
        --sif-cache /data/CCBR_Pipeliner/SIFS \
        &> /data/$USER/renee_shell.${genome}.out
done

Job status

generate table ```sh cd /data/sovacoolkl/ for f in $(ls | grep renee_shell); do genome=$(echo $f | sed 's/renee_shell\.//' | sed 's/\.out//'); jobid=$(grep master $f | sed 's/.*: //'); echo "| $genome | $jobid | |"; done ```
genome slurm id status
hg19_19 31994530 RUNNING
hg19_36lift37 31994535 RUNNING
hg38_30 31994547 RUNNING
hg38_34 31994560 RUNNING
hg38_36 31994162 RUNNING
hg38_38 31994566 RUNNING
hg38_41 31994570 RUNNING
hg38_45 31994583 RUNNING

Update

All pipeline runs completed successfully. Jobby initially failed because it wasn't in my path when I submitted these, but after running jobby manually I verified that all jobs completed successfully.

kelly-sovacool commented 3 months ago

@kopardev this is ready for your re-review