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

hicexplorer: fix restriction/danglingSequence #6519

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
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 tools/hicexplorer/hicBuildMatrix.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
--restrictionCutFile '$restrictionCutFile'
#if $restrictionSequence:
--restrictionSequence '$restrictionSequence'
--restrictionSequence $restrictionSequence
#end if
#if $danglingSequence:
--danglingSequence '$danglingSequence'
--danglingSequence $danglingSequence
#end if
#if $minDistance:
--minDistance $minDistance
Expand Down
4 changes: 2 additions & 2 deletions tools/hicexplorer/hicQuickQC.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
--restrictionCutFile '$restrictionCutFile'
#if $restrictionSequence:
--restrictionSequence '$restrictionSequence'
--restrictionSequence $restrictionSequence
#end if
#if $danglingSequence:
--danglingSequence '$danglingSequence'
--danglingSequence $danglingSequence
#end if
--QCfolder ./QCfolder
Expand Down
8 changes: 4 additions & 4 deletions tools/hicexplorer/macros.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<macros>
<token name="@THREADS@">\${GALAXY_SLOTS:-4}</token>
<token name="@TOOL_VERSION@">3.7.5</token>
<token name="@VERSION_SUFFIX@">0</token>
<token name="@VERSION_SUFFIX@">1</token>
<token name="@PROFILE@">23.0</token>
<token name="@USE_RANGE@">
#if $use_range.select_use_range == "yes_use_range":
Expand Down Expand Up @@ -48,14 +48,14 @@
</xml>

<xml name="restrictionCutFile">
<param argument="--restrictionCutFile" type="data" format="bed" optional="false" 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
<param argument="--restrictionCutFile" type="data" format="bed" optional="false" 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)." />
</xml>

<xml name="restrictionSequence">
<param argument="--restrictionSequence" type="text" optional="false" label="Sequence of the restriction site" help="This is used to discard reads that end/start with such sequence and that are considered un-ligated fragments or
&quot;dangling-ends&quot;. If not given, such statistics will not be available.">
<validator type="expression" message="Only alphabetic characters (a-z) are allowed.">value.isalpha()</validator>
<validator type="regex" message="Only space separated nucleotide sequences are allowed.">^(?:[ATCGatcg]+(?:\s[ATCGatcg]+)*)?$</validator>
</param>
</xml>
<xml name="danglingSequence">
Expand All @@ -67,7 +67,7 @@
This information is easily found on the description of the restriction enzyme.
The dangling sequence is used to classify and report reads whose 5’ end starts with such sequence as dangling-end reads.
A significant portion of dangling-end reads in a sample are indicative of a problem with the re-ligation step of the protocol. ">
<validator type="expression" message="Only alphabetic characters (a-z) are allowed.">value.isalpha()</validator>
<validator type="regex" message="Only space separated nucleotide sequences are allowed.">^(?:[ATCGatcg]+(?:\s[ATCGatcg]+)*)?$</validator>
</param>
</xml>

Expand Down
Loading