Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: increase file latency wait #130

Merged
merged 7 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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