Skip to content

Commit

Permalink
try to optimize large outputs trying to fit tests in GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ftabaro committed Mar 11, 2024
1 parent be557f4 commit 17cc377
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/profile/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ singularity-args: ""
show-failed-logs: True
cores: 2
conda-cleanup-pkgs: cache
all-temp: True
2 changes: 1 addition & 1 deletion workflow/rules/star.smk
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ rule star:
{params.others} |& \
tee {log}
rm -r {params.alignments_folder}/{wildcards.serie}/*_STAR*
[[ -d $TMP_FOLDER ]] && rm -r $TMP_FOLDER || exit 0
"""

Expand Down
2 changes: 2 additions & 0 deletions workflow/rules/starTE.smk
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ rule starTE_random:
--outBAMcompression -1 |& \
tee {log}
rm -r {params.alignments_folder}/{wildcards.serie}/*_STAR*
[[ -d $TMP_FOLDER ]] && rm -r $TMP_FOLDER || exit 0
"""

Expand Down Expand Up @@ -205,6 +206,7 @@ rule starTE_multihit:
--outBAMcompression -1 |& \
tee {log}
rm -r {params.alignments_folder}/{wildcards.serie}/*_STAR*
[[ -d $TMP_FOLDER ]] && rm -r $TMP_FOLDER || exit 0
"""

Expand Down

0 comments on commit 17cc377

Please sign in to comment.