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

Fixes in partition-before-pggb #349

Merged
merged 1 commit into from
Nov 2, 2023
Merged
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
4 changes: 2 additions & 2 deletions partition-before-pggb
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ if [[ $sparse_map != false ]]; then
params="$params -x $sparse_map"
fi
if [[ $exclude_delim != false ]]; then
params="$params -Y $exclude_delim"
params="$params -Y \"$exclude_delim\""
fi
if [[ $skip_normalization != false ]]; then
params="$params --skip-normalization"
Expand Down Expand Up @@ -608,7 +608,7 @@ pggb -i $community \\
-o $community.out \\
-s $segment_length -l $block_length -p $map_pct_id -n $n_mappings -K $mash_kmer -F $mash_kmer_thres \\
-k $min_match_length -f $sparse_factor -B $transclose_batch \\
-H $n_haps -j $max_path_jump -e $max_edge_jump -G $target_poa_length $poa_params_cmd -O $poa_padding -d $pad_max_depth -Q $consensus_prefix \\
-j $max_path_jump -e $max_edge_jump -G $target_poa_length $poa_params_cmd -O $poa_padding -d $pad_max_depth -Q $consensus_prefix \\
$params
EOT
done
Expand Down
Loading