Skip to content

Commit

Permalink
Rename to src_fasta_file
Browse files Browse the repository at this point in the history
  • Loading branch information
endast committed Dec 7, 2023
1 parent 88daa13 commit 10fc6b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipelines/preprocessing/preprocess.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ reference_dir = working_dir / config["reference_dir_name"]

preprocess_threads = config["preprocess_threads"]

fasta_file = reference_dir / config["reference_fasta_file"]
src_fasta_file = reference_dir / config["reference_fasta_file"]
fasta_file_uppercase = reference_dir / f'{Path(config["reference_fasta_file"]).stem}_upper.fa'
fasta_index_file = f"{fasta_file_uppercase}.fai"

Expand Down Expand Up @@ -85,7 +85,7 @@ rule index_fasta:

rule uppercase_fast:
input:
fasta=fasta_file,
fasta=src_fasta_file,
output:
fasta_file_uppercase,
shell:
Expand Down

0 comments on commit 10fc6b2

Please sign in to comment.