Skip to content

Commit

Permalink
Merge pull request #130 from CCBR/latency-wait
Browse files Browse the repository at this point in the history
fix: increase file latency wait
  • Loading branch information
kelly-sovacool authored Nov 19, 2024
2 parents a2f8618 + b95e4c8 commit d2d6269
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 191 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/activeDev_linter.yaml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/main_linter.yaml

This file was deleted.

1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Also use `python -E` to ensure the `$PYTHONPATH` is not carried over. (#129, @kelly-sovacool)
- Fix `reconfig` to correctly replace variables in the config file. (#121, @kelly-sovacool)
- Prevent using excessive memory when copying reference files. (#126, @kelly-sovacool)
- Fix missing output files due to file system latency and use real (absolute) paths where possible. (#130, @kelly-sovacool)

## CHARLIE 0.11.0

Expand Down
7 changes: 4 additions & 3 deletions charlie
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ function run() {
--use-singularity \
--singularity-args "$SINGULARITY_BINDS" \
--use-envmodules \
--latency-wait 120 \
--latency-wait 300 \
--configfile $CONFIGFILE \
--cores all \
--rerun-incomplete \
Expand Down Expand Up @@ -521,7 +521,7 @@ snakemake -s $SNAKEFILE \
--singularity-args "$SINGULARITY_BINDS" \
--use-envmodules \
--printshellcmds \
--latency-wait 120 \
--latency-wait 300 \
--configfile $CONFIGFILE \
--cluster-config $CLUSTERFILE \
--cluster "$CLUSTER_SBATCH_CMD" \
Expand Down Expand Up @@ -562,7 +562,7 @@ EOF
--use-singularity \
--singularity-args "$SINGULARITY_BINDS" \
--printshellcmds \
--latency-wait 120 \
--latency-wait 300 \
--configfile $CONFIGFILE \
--cluster-config $CLUSTERFILE \
--cluster "$CLUSTER_SBATCH_CMD" \
Expand Down Expand Up @@ -640,6 +640,7 @@ function main(){
esac
done

WORKDIR=$(readlink -f $WORKDIR)
echo "Working Dir: $WORKDIR"

if [[ -z "$SING_CACHE_DIR" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion config/biowulf/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ high_confidence_core_callers_plus_n: 1

ciri_perl_script: "/opt2/CIRI_v2.0.6/CIRI2.pl" # path in docker container
# change this path to a directory containing fasta and GTF files for all host and virus genomes
fastas_gtfs_dir: "/data/CCBR_Pipeliner/db/PipeDB/charlie/fastas_gtfs"
fastas_gtfs_dir: "/gpfs/gsfs10/users/CCBR_Pipeliner/db/PipeDB/charlie/fastas_gtfs"

annotation_lookups:
hg38: "PIPELINE_HOME/resources/hg38_2_hg19_lookup.txt"
Expand Down
127 changes: 0 additions & 127 deletions config/lint.config.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions config/samples.tsv
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sampleName path_to_R1_fastq path_to_R2_fastq
GI1_N /data/CCBR_Pipeliner/testdata/circRNA/human/GI1_N_ss.R1.fastq.gz /data/CCBR_Pipeliner/testdata/circRNA/human/GI1_N_ss.R2.fastq.gz
GI1_T /data/CCBR_Pipeliner/testdata/circRNA/human/GI1_T_ss.R1.fastq.gz
GI1_N /gpfs/gsfs10/users/CCBR_Pipeliner/testdata/circRNA/human/GI1_N_ss.R1.fastq.gz /gpfs/gsfs10/users/CCBR_Pipeliner/testdata/circRNA/human/GI1_N_ss.R2.fastq.gz
GI1_T /gpfs/gsfs10/users/CCBR_Pipeliner/testdata/circRNA/human/GI1_T_ss.R1.fastq.gz
2 changes: 0 additions & 2 deletions lintit

This file was deleted.

1 change: 1 addition & 0 deletions workflow/rules/findcircrna.smk
Original file line number Diff line number Diff line change
Expand Up @@ -1104,6 +1104,7 @@ postProcessStarAlignment.pl \\
--starDir ${{starDir}}/ \\
--outDir ${{outDir}}/
sleep 10
echo -ne "chr\\tstart\\tend\\tstrand\\tread_count\\n" > {output.ctf}
awk -F"\\t" -v OFS="\\t" -v minreads={params.bsj_min_nreads} '{{if ($5>=minreads) {{print $1,$2,$3,$6,$5}}}}' {output.bed} >> {output.ctf}
Expand Down

0 comments on commit d2d6269

Please sign in to comment.