Skip to content

Commit

Permalink
fix bug in insert size
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Servant committed Aug 7, 2015
1 parent dc59f06 commit 8046447
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ SIGNIFICANT USER-VISIBLE CHANGES

BUG FIXES

o Fix bug in MAX_INSERT_SIZE

o Fix bug in build_raw_maps.sh in --chrsize (reported by D. Robelin)

o Fix bugs in CIS short/long ranges interaction reporting
Expand Down
2 changes: 1 addition & 1 deletion scripts/mapped_2hic_fragments.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ opts="-v"
if [[ "${GET_ALL_INTERACTION_CLASSES}" -eq "1" ]]; then opts=$opts" -a"; fi
if [[ "${GET_PROCESS_SAM}" -eq "1" ]]; then opts=$opts" -S"; fi
if [[ "${MIN_INSERT_SIZE}" -ge "0" && "${MIN_INSERT_SIZE}" -ne "" ]]; then opts=$opts" -s ${MIN_INSERT_SIZE}"; fi
if [[ "${MAX_INSERT_SIZE}" -ge "0" && "${MIN_INSERT_SIZE}" -ne "" ]]; then opts=$opts" -l ${MAX_INSERT_SIZE}"; fi
if [[ "${MAX_INSERT_SIZE}" -ge "0" && "${MAX_INSERT_SIZE}" -ne "" ]]; then opts=$opts" -l ${MAX_INSERT_SIZE}"; fi
if [[ ! -z ${ALLELE_SPECIFIC_SNP} ]]; then opts=$opts" -g XA"; fi

GENOME_FRAGMENT_FILE=`abspath $GENOME_FRAGMENT`
Expand Down

0 comments on commit 8046447

Please sign in to comment.