Skip to content

Commit

Permalink
src counter now outputs a percentage of positions covered by shared k…
Browse files Browse the repository at this point in the history
…mers from the bank file - .sh fix
  • Loading branch information
pierrepeterlongo committed Jul 3, 2017
1 parent 3eac7c6 commit 07909d2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion short_read_connector.sh
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,11 @@ fi
if [ $diskMode -eq 0 ]; then
if [ $countMode -eq 0 ]; then
cmd="${BIN_DIR}/SRC_linker_ram"
threshold_option="-kmer_threshold ${kmer_threshold}"
else
# SRC_COUNTER
cmd="${BIN_DIR}/SRC_counter"
threshold_option=""
fi
else
echo "Disk version not maintained anymore - sorry"
Expand All @@ -274,7 +276,7 @@ fi


# adding options
cmd="${cmd} -graph ${out_dsk} -bank ${bank_set} -query ${query_set} -out ${result_file} -kmer_threshold ${kmer_threshold} -fingerprint_size ${fingerprint_size} -core ${core_used} -gamma ${gamma} ${commet_like_option} ${zerod_option} ${keep_low_complexity_option}"
cmd="${cmd} -graph ${out_dsk} -bank ${bank_set} -query ${query_set} -out ${result_file} ${threshold_option} -fingerprint_size ${fingerprint_size} -core ${core_used} -gamma ${gamma} ${commet_like_option} ${zerod_option} ${keep_low_complexity_option}"



Expand Down

0 comments on commit 07909d2

Please sign in to comment.