You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/picard/fingerprint/CrosscheckFingerprints.java
+65-1Lines changed: 65 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -289,6 +289,16 @@ public class CrosscheckFingerprints extends CommandLineProgram {
289
289
"Should only be used with SECOND_INPUT. ", optional = true)
290
290
publicFileSECOND_INPUT_SAMPLE_MAP;
291
291
292
+
@Argument(doc = "A tsv with two columns representing the individual with which each sample is associated. The first column is the sample id, and the second " +
293
+
"column is the associated individual id. Values in the first column must be unique. If INPUT_SAMPLE_MAP or SECOND_INPUT_SAMPLE_MAP is also specified, " +
294
+
"then the values in the first column of this file should be the sample aliases specified in the second columns of INPUT_SAMPLE_MAP and SECOND_INPUT_SAMPLE_MAP, " +
295
+
"respectively. When this input is specified, expectations for matches will be based on the equality or inequality of the individual ids associated with two " +
296
+
"samples, as opposed to the sample ids themselves. Samples which are not listed in this file will have their sample id used as their individual id, for the " +
297
+
"purposes of match expectations. This means that one sample id could be used as the individual id for another sample, but not included in the map itself, and " +
298
+
"these two samples would be considered to have come from the same individual. Note that use of this parameter only affects labelling of matches and mismatches as " +
299
+
"EXPECTED or UNEXPECTED. It has no affect on how data is grouped for crosschecking.", optional = true)
300
+
publicFileSAMPLE_INDIVIDUAL_MAP;
301
+
292
302
@Argument(doc = "An argument that controls how crosschecking with both INPUT and SECOND_INPUT should occur. ")
0 commit comments