WordMatchGetMinimalList Method |
Given a list of matches, reduce it to the minimal set of best
non-overlapping matches.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public static List<WordMatch> GetMinimalList(
List<WordMatch> completeList,
int wordLength
)
Public Shared Function GetMinimalList (
completeList As List(Of WordMatch),
wordLength As Integer
) As List(Of WordMatch)
public:
static List<WordMatch^>^ GetMinimalList(
List<WordMatch^>^ completeList,
int wordLength
)
static member GetMinimalList :
completeList : List<WordMatch> *
wordLength : int -> List<WordMatch>
Parameters
- completeList
- Type: System.Collections.GenericListWordMatch
List of matches to reduce to non-overlapping set. - wordLength
- Type: SystemInt32
Wordlength entered by the user.
Return Value
Type:
ListWordMatchMinimal set of best non-overlapping matches.
See Also