Skip to content

Commit

Permalink
drop module
Browse files Browse the repository at this point in the history
  • Loading branch information
SilasK committed Oct 9, 2023
1 parent fb43561 commit 387c3b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 16 deletions.
2 changes: 1 addition & 1 deletion atlas/init/atlas_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def prepare_sample_table_for_atlas(
if not reads_are_QC:
for f in fractions:
sample_table[f"Reads_QC_{f}"] = (
f"QCreads/" + sample_table.index + f"_{f}.fastq.gz"
f"QC/reads/" + sample_table.index + f"_{f}.fastq.gz"
)

sample_table["Assembly"] = "Assembly/fasta/" + sample_table.index + ".fasta"
Expand Down
4 changes: 2 additions & 2 deletions test/test_local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ rm -f $WD/samples.tsv
#
atlas init $reads_dir -w $WD

atlas run None screen -w $WD qc $snakemake_args
#atlas run None screen -w $WD $snakemake_args

echo "\n\nFinished screen\n\n"
# echo "\n\nFinished screen\n\n"

atlas run -w $WD qc $snakemake_args

Expand Down
13 changes: 0 additions & 13 deletions workflow/rules/qc.smk
Original file line number Diff line number Diff line change
Expand Up @@ -130,19 +130,6 @@ rule get_read_stats:
script:
"../scripts/get_read_stats.py"

use rule get_read_stats as get_gc_read_stats with:
input:
get_quality_controlled_reads
output:
"{sample}/sequence_quality_control/read_stats/QC.zip",
read_counts=temp(
"{sample}/sequence_quality_control/read_stats/QC_read_counts.tsv"
),
log:
"{sample}/logs/QC/read_stats/QC.log",
params:
folder=lambda wc, output: os.path.splitext(output[0])[0],

if not SKIP_QC:
if config.get("deduplicate", True):
PROCESSED_STEPS.append("deduplicated")
Expand Down

0 comments on commit 387c3b5

Please sign in to comment.