-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Richard Christopher Burhans
authored and
Richard Christopher Burhans
committed
Apr 16, 2024
1 parent
8a84931
commit 44b09d6
Showing
8 changed files
with
71 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<macros> | ||
<xml name="output_options"> | ||
<section name="output_options" expanded="false" title="Output Options"> | ||
<yield /> | ||
<param argument="--markend" type="boolean" value="false" label="Write a marker line just before completion" /> | ||
<yield/> | ||
<param argument="--markend" type="boolean" value="false" label="Write a marker line just before completion"/> | ||
</section> | ||
</xml> | ||
</macros> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,25 @@ | ||
<macros> | ||
<xml name="scoring_options"> | ||
<section name="scoring_options" expanded="false" title="Scoring Options"> | ||
<param argument="--scoring" type="data" value="false" optional="true" format="txt" label="Scoring file in LASTZ format" /> | ||
<!-- | ||
ambiguous can be: {"n", "n,int,int", "iupac", "iupac,int,int"} | ||
ints are ambiguous_reward and ambiguous_penalty | ||
--> | ||
<param argument="--scoring" type="data" value="false" optional="true" format="txt" label="Scoring file in LASTZ format"/> | ||
<param name="ambiguous_selector" type="select" label="Ambiguous Nucleotides"> | ||
<option value="x" selected="true">None</option> | ||
<option value="n">N</option> | ||
<option value="iupac">IUPAC</option> | ||
</param> | ||
<conditional name="ambiguous_params"> | ||
<param name="set_ambiguous_params_selector" type="select" label="Set Ambiguous Nucleotide Scoring Parameters"> | ||
<option value="false" selected="true">No</option> | ||
<option value="true">Yes</option> | ||
</param> | ||
<when value="false"> | ||
<!-- Do nothing --> | ||
</when> | ||
<when value="true"> | ||
<param name="ambiguous_reward" type="integer" value="0" label="Ambiguous Nucleotide Reward"/> | ||
<param name="ambiguous_penalty" type="integer" value="0" label="Ambiguous Nucleotide Penalty"/> | ||
</when> | ||
</conditional> | ||
</section> | ||
</xml> | ||
</macros> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<macros> | ||
<xml name="system_options"> | ||
<section name="system_options" title="System Options"> | ||
<param argument="--wga_chunk_size" type="integer" value="250000" label="Chunk sizes for GPU calls for Xdrop - ⚠ change only if you are a developer" /> | ||
<param argument="--lastz_interval_size" type="integer" value="10000000" label="LASTZ interval for Ydrop - ⚠ change only if you are a developer" /> | ||
<param argument="--seq_block_size" type="integer" value="500000000" label="LASTZ interval for Ydrop - ⚠ change only if you are a developer" /> | ||
<param argument="--num_gpu" type="integer" value="-1" label="Specify number of GPUs to use - -1 if all the GPUs should be used" /> | ||
<param argument="--debug" type="boolean" value="false" label="Print debug messages" /> | ||
<param argument="--wga_chunk_size" type="integer" value="250000" label="Chunk sizes for GPU calls for Xdrop - ⚠ change only if you are a developer"/> | ||
<param argument="--lastz_interval_size" type="integer" value="10000000" label="LASTZ interval for Ydrop - ⚠ change only if you are a developer"/> | ||
<param argument="--seq_block_size" type="integer" value="500000000" label="LASTZ interval for Ydrop - ⚠ change only if you are a developer"/> | ||
<param argument="--num_gpu" type="integer" value="-1" label="Specify number of GPUs to use - -1 if all the GPUs should be used"/> | ||
<param argument="--debug" type="boolean" value="false" label="Print debug messages"/> | ||
</section> | ||
</xml> | ||
</macros> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<macros> | ||
<xml name="ungapped_extension_options"> | ||
<section name="ungapped_extension_options" expanded="false" title="Ungapped Extension Options"> | ||
<param argument="--xdrop" type="integer" value="910" label="X-drop value for gap-free extension" /> | ||
<param argument="--hspthresh" type="integer" value="3000" label="Segment score threshold for high scoring pairs" /> | ||
<param argument="--noentropy" type="boolean" checked="false" label="Don't adjust low score segment pair scores using entropy factor after filtering stage" /> | ||
<param argument="--xdrop" type="integer" value="910" label="X-drop value for gap-free extension"/> | ||
<param argument="--hspthresh" type="integer" value="3000" label="Segment score threshold for high scoring pairs"/> | ||
<param argument="--noentropy" type="boolean" checked="false" label="Don't adjust low score segment pair scores using entropy factor after filtering stage"/> | ||
</section> | ||
</xml> | ||
</macros> |