Skip to content

Commit

Permalink
removed unnecesary parameter fragmentLength from hicBuildMatrix
Browse files Browse the repository at this point in the history
  • Loading branch information
fidelram committed Jan 25, 2017
1 parent 0c9321e commit 508c824
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
8 changes: 1 addition & 7 deletions galaxy/wrapper/hicBuildMatrix.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@
--binSize $binSize
#end if
#if $fragmentLength:
--fragmentLength $fragmentLength
#end if
#if $restrictionCutFile:
--restrictionCutFile '$restrictionCutFile'
#end if
Expand Down Expand Up @@ -75,9 +71,7 @@
<param name="binSize" type="integer" value="" optional="true" label="Bin size in bp"
help="If used, the restriction cut places (if given) are used to only consider reads that are in the vicinity of the resctriction sites.
Otherwise all reads in the interval are considered. " argument="--binSize"/>

<param name="fragmentLength" type="integer" value="" optional="true" label="Estimated fragment length" argument="--fragmentLength" />


<param name="restrictionCutFile" type="data" format="bed" optional="true" label="BED file with all restriction cut places"
help="Should contaion only mappable restriction sites. If given, the bins are set to match the restriction fragments
(i.e. the region between one restriction site and the next)." argument="--restrictionCutFile"/>
Expand Down
5 changes: 0 additions & 5 deletions hicexplorer/hicBuildMatrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,6 @@ def parseArguments(args=None):
type=argparse.FileType('r'),
metavar='BED file')

parser.add_argument('--fragmentLength', '-f',
help='Estimated fragment length',
type=int,
default=300)

parser.add_argument('--minDistance',
help='Minimum distance between restriction sites. '
'Restriction sites that are closer that this '
Expand Down

0 comments on commit 508c824

Please sign in to comment.