Add an extra FeatureHolder to the set of FeatureHolders which are merged.

Namespace:  BioSharp.Core.Bio.Seq
Assembly:  BioSharp.Core (in BioSharp.Core.dll) Version: 0.1.3191.26120 (0.1.0.0)

Syntax

C#
public void AddFeatureHolder(
	IFeatureHolder fh
)

Parameters

fh
Type: BioSharp.Core.Bio.Seq..::.IFeatureHolder
The feature holder to add.

Remarks

This method is provided for backward compatibility, and is equivalent to:

CopyC#
mfh.addFeatureHolder(fh, FeatureFilter.all);

You should always use the two-arg version in preference if you are able to define the membership of a FeatureHolder.

See Also