-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from Illumina/update-changes
Support for new features and bug fixes
- Loading branch information
Showing
87 changed files
with
2,528 additions
and
899 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
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 |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
<tags>native, Illumina, InterOp, C++, C#, @PLATFORM@, @CSHARP_TYPE@ </tags> | ||
</metadata> | ||
<files> | ||
<file src="@CONFIG@/csharp_interop.dll" target="lib/net40" /> | ||
<file src="@CONFIG@/csharp_interop.dll" target="lib\net40" /> | ||
<file src="illumina_interop_@CSHARP_TYPE@_@[email protected]" target="build" /> | ||
<file src="@CONFIG@@SHARED_LIB_SEARCH@" target="build" /> | ||
</files> | ||
|
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Summary {#example_summary} | ||
========================== | ||
|
||
This section introduces the way SAV calculates the summary tab. This introduces a limited set of functions. The key | ||
classes used below are: | ||
|
||
- `run_metrics`: model holding the binary InterOp data | ||
- `run_summary`: model holding the derived summary metrics | ||
- `valid_to_load`: byte array (`std::vector<unsigned char>` or `uchar_vector`) indicating which InterOp files to load | ||
|
||
The primary functions used below are: | ||
|
||
- `run_metrics::read`: read the InterOp files from disk | ||
- `summarize_run_metrics`: summarize the SAV run metrics | ||
|
||
C# | ||
--- | ||
|
||
@snippet src/examples/csharp/SummaryExample.cs Reporting Summary Metrics in CSharp | ||
|
||
|
||
C++ | ||
--- | ||
|
||
The following shows how to calculate the summary metrics: | ||
|
||
@snippet src/apps/summary.cpp Reporting Summary Metrics in C++ | ||
|
||
The following shows the implementation of `read_run_metrics` above and how to read the InterOp data from disk: | ||
|
||
@snippet src/apps/inc/application.h Reading a subset of run metrics in C++ |
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
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
Oops, something went wrong.