Skip to content

Commit

Permalink
Replace call to process_reads.py with call to fasta_extract.py in 7-c…
Browse files Browse the repository at this point in the history
…ombineConsensus.sh for haplotype-aware assemblies.
  • Loading branch information
brianwalenz committed Mar 6, 2023
1 parent 475089f commit ceca359
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Snakefiles/7-combineConsensus.sm
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,13 @@ else
echo ""

if [ -e ./paths-haplotype1 ] ; then
{PYTHON} {VERKKO}/scripts/process_reads.py extract ../{output.cnshap1} ./paths-haplotype1 ../{output.cns}
{PYTHON} {VERKKO}/scripts/fasta_extract.py extract ../{output.cnshap1} ./paths-haplotype1 ../{output.cns}
fi
if [ -e ./paths-haplotype2 ] ; then
{PYTHON} {VERKKO}/scripts/process_reads.py extract ../{output.cnshap2} ./paths-haplotype2 ../{output.cns}
{PYTHON} {VERKKO}/scripts/fasta_extract.py extract ../{output.cnshap2} ./paths-haplotype2 ../{output.cns}
fi
if [ -e ./paths-unassigned ] ; then
{PYTHON} {VERKKO}/scripts/process_reads.py extract ../{output.cnsunas} ./paths-unassigned ../{output.cns}
{PYTHON} {VERKKO}/scripts/fasta_extract.py extract ../{output.cnsunas} ./paths-unassigned ../{output.cns}
fi
fi

Expand Down

0 comments on commit ceca359

Please sign in to comment.