Click or drag to resize
HelperGetReverseComplement Method
Get reverse complement of sequence string. Handles only unambiguous DNA sequence strings. Note: This method is a light-weight implementation of sequence.ReverseComplement. This only works for unambiguous DNA sequences, which is characteristic of the input for de-novo.

Namespace: Bio.Util
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public static string GetReverseComplement(
	this string sequence,
	char[] reverseComplementBuilder
)

Parameters

sequence
Type: SystemString
Sequence string.
reverseComplementBuilder
Type: SystemChar
String builder for building reverse complement.

Return Value

Type: String
Reverse Complement sequence string.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also