-
Notifications
You must be signed in to change notification settings - Fork 371
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates to CrosscheckFingerprints documentation. #1520
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -59,51 +59,54 @@ public Boolean isMatch() { | |
} | ||
} | ||
|
||
/** The data type. */ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These descriptions should probably be expanded, I just changed them to Javadoc and fixed up a few LEFT vs. RIGHT typos. |
||
public enum DataType { | ||
FILE, | ||
SAMPLE, | ||
LIBRARY, | ||
READGROUP | ||
} | ||
|
||
/** The LEFT group value. */ | ||
public String LEFT_GROUP_VALUE; | ||
/** The RIGHT group value. */ | ||
public String RIGHT_GROUP_VALUE; | ||
|
||
// The overall result of the match | ||
/** The overall result of the match. */ | ||
public FingerprintResult RESULT; | ||
// The data type that was being compared | ||
/** The data type that was being compared. */ | ||
public DataType DATA_TYPE; | ||
|
||
// The resulting LOD score comparing LEFT and RIGHT data | ||
/** The resulting LOD score comparing LEFT and RIGHT data. */ | ||
public Double LOD_SCORE; | ||
// The resulting LOD score comparing LEFT as tumor and RIGHT as normal | ||
/** The resulting LOD score comparing LEFT as tumor and RIGHT as normal. */ | ||
public Double LOD_SCORE_TUMOR_NORMAL; | ||
// The resulting LOD score comparing LEFT as normal and RIGHT as tumor | ||
/** The resulting LOD score comparing LEFT as normal and RIGHT as tumor. */ | ||
public Double LOD_SCORE_NORMAL_TUMOR; | ||
|
||
// The LEFT run barcode (PU field) expected to look like : D047KACXX110901.1.ACCAACTG | ||
/** The LEFT run barcode (PU field) expected to look like : D047KACXX110901.1.ACCAACTG. */ | ||
public String LEFT_RUN_BARCODE; | ||
// The LEFT lane | ||
/** The LEFT lane. */ | ||
public Integer LEFT_LANE; | ||
// The LEFT molecular (sample) barcode | ||
/** The LEFT molecular (sample) barcode. */ | ||
public String LEFT_MOLECULAR_BARCODE_SEQUENCE; | ||
// The LEFT library identifier | ||
/** The LEFT library identifier. */ | ||
public String LEFT_LIBRARY; | ||
// The LEFT sample identifier | ||
/** The LEFT sample identifier. */ | ||
public String LEFT_SAMPLE; | ||
// The LEFT file from which the fingerprint was obtained | ||
/** The LEFT file from which the fingerprint was obtained. */ | ||
public String LEFT_FILE; | ||
|
||
// The RIGHT run barcode (PU field) expected to look like : D047KACXX110901.1.ACCAACTG | ||
/** The RIGHT run barcode (PU field) expected to look like : D047KACXX110901.1.ACCAACTG. */ | ||
public String RIGHT_RUN_BARCODE; | ||
// The LEFT lane | ||
/** The RIGHT lane. */ | ||
public Integer RIGHT_LANE; | ||
// The LEFT molecular (sample) barcode | ||
/** The RIGHT molecular (sample) barcode. */ | ||
public String RIGHT_MOLECULAR_BARCODE_SEQUENCE; | ||
// The LEFT library identifier | ||
/** The RIGHT library identifier. */ | ||
public String RIGHT_LIBRARY; | ||
// The LEFT sample identifier | ||
/** The RIGHT sample identifier. */ | ||
public String RIGHT_SAMPLE; | ||
// The LEFT file from which the fingerprint was obtained | ||
/** The RIGHT file from which the fingerprint was obtained. */ | ||
public String RIGHT_FILE; | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We may want to expand upon this documentation, I just fixed up a few typos I noticed. I also found it confusing that this text was mostly---but not faithfully---reproduced in the tool summary (and hence did not fix the corresponding typos there).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One other comment while I'm here---"moltenize/d" is a very idiosyncratic term to describe this type of table reshaping. Why not just "molten/melted"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no strong feelings about moltenized....if you think that "molten" is more clear, go for it!