Skip to content

Commit

Permalink
refactor: switch nclscan container to star_ucsc_cufflinks everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly-sovacool committed Apr 26, 2024
1 parent a37351a commit d34bfeb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
3 changes: 1 addition & 2 deletions config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,8 @@ containers:
fastqc: 'docker://nciccbr/ccrgb_qctools:v4.0'
mapsplice: "docker://cgrlab/mapsplice2:latest"
multiqc: 'docker://nciccbr/ccbr_multiqc_1.15:v1'
nclscan: "docker://nciccbr/charlie_nclscan:v0.1.0"
picard: 'docker://nciccbr/ccbr_picard_2.27.5:v1'
R: 'docker://nciccbr/ccbr_r_4.3.0:v1'
star: "docker://nciccbr/ccbr_star_2.7.6a:latest"
star_ucsc_cufflinks: "docker://nciccbr/charlie_star_ucsc_cufflinks:v0.1.0"
star_ucsc_cufflinks: "docker://nciccbr/charlie_star_ucsc_cufflinks:v0.2.0"
ucsc: 'docker://nciccbr/ccbr_ucsc:v1'
1 change: 0 additions & 1 deletion docker/star_ucsc_cufflinks/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ ENV PATH="/opt2/NCLscan-${NCLSCAN_VERSION}/:/opt2/NCLscan-${NCLSCAN_VERSION}/bin

# Save Dockerfile in the docker
COPY Dockerfile /opt2/Dockerfile_${REPONAME}.${BUILD_TAG}
RUN chmod a+r /opt2/Dockerfile_${REPONAME}.${BUILD_TAG}

# cleanup
WORKDIR /data2
Expand Down
2 changes: 1 addition & 1 deletion workflow/rules/align.smk
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ rule find_circ_align:
peorse=get_peorse,
find_circ_dir=FIND_CIRC_DIR,
randomstr=str(uuid.uuid4()),
container: config['containers']["nclscan"]
container: config['containers']['star_ucsc_cufflinks']
threads: getthreads("find_circ_align")
shell:
"""
Expand Down
6 changes: 3 additions & 3 deletions workflow/rules/findcircrna.smk
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ rule mapsplice_postprocess:
bai=join(
WORKDIR, "results", "{sample}", "MapSplice", "{sample}.mapsplice.cram.crai"
),
container: config['containers']["nclscan"]
container: config['containers']['star_ucsc_cufflinks']
params:
script=join(SCRIPTS_DIR, "create_mapsplice_per_sample_counts_table.py"),
memG=getmemG("mapsplice_postprocess"),
Expand Down Expand Up @@ -1031,7 +1031,7 @@ rule nclscan:
"NCLscan",
"{sample}.nclscan.counts_table.tsv.filtered",
),
container: config['containers']["nclscan"]
container: config['containers']['star_ucsc_cufflinks']
threads: getthreads("nclscan")
params:
workdir=WORKDIR,
Expand Down Expand Up @@ -1205,7 +1205,7 @@ rule find_circ:
min_reads=config['circexplorer_bsj_circRNA_min_reads'],
collapse_script=join(SCRIPTS_DIR,"_collapse_find_circ.py"),
randomstr=str(uuid.uuid4()),
container: config['containers']["nclscan"]
container: config['containers']['star_ucsc_cufflinks']
threads: getthreads("find_circ")
shell:
"""
Expand Down

0 comments on commit d34bfeb

Please sign in to comment.