Skip to content

Commit

Permalink
apply reviewers suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucpen committed Oct 10, 2024
1 parent 420b8b3 commit 64c0206
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/local/drop_config_runAE.nf
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ process DROP_CONFIG_RUN_AE {
snakemake aberrantExpression --cores ${task.cpus} --rerun-triggers mtime $args
if [[ !skip_export_counts_drop ]]; then
if [[ $skip_export_counts_drop == false ]]; then
snakemake exportCounts --cores 1
mkdir -p exported_counts
cp sample_annotation.tsv exported_counts/.
Expand All @@ -83,7 +83,7 @@ process DROP_CONFIG_RUN_AE {
touch OUTRIDER_results_all.Rds
touch gene_name_mapping_.tsv
mkdir output
if [[ !skip_export_counts_drop ]]; then
if [[ $skip_export_counts_drop == false ]]; then
mkdir exported_counts
fi
Expand Down
4 changes: 2 additions & 2 deletions modules/local/drop_config_runAS.nf
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ process DROP_CONFIG_RUN_AS {
snakemake aberrantSplicing --cores ${task.cpus} --rerun-triggers mtime $args
if [[ !skip_export_counts_drop ]]; then
if [[ $skip_export_counts_drop == false ]]; then
snakemake exportCounts --cores 1
mkdir -p exported_counts
cp sample_annotation.tsv exported_counts/.
Expand All @@ -80,7 +80,7 @@ process DROP_CONFIG_RUN_AS {
touch FRASER_results_fraser--.tsv
touch gene_name_mapping_.tsv
mkdir output
if [[ !skip_export_counts_drop ]]; then
if [[ $skip_export_counts_drop == false ]]; then
mkdir exported_counts
fi
Expand Down

0 comments on commit 64c0206

Please sign in to comment.