Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/milaboratory/mixcr into …
Browse files Browse the repository at this point in the history
…develop
  • Loading branch information
PoslavskySV committed Sep 8, 2015
2 parents 727f6ce + e24f465 commit 883108f
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ public void outputCompact(PrintStream output, final VDJCAlignments alignments) {
output.println();
for (int i = 0; i < alignments.numberOfTargets(); i++) {
MultiAlignmentHelper targetAsMultiAlignment = VDJCAlignmentsFormatter.getTargetAsMultiAlignment(alignments, i);
if (targetAsMultiAlignment == null)
continue;
MultiAlignmentHelper[] split = targetAsMultiAlignment.split(80);
for (MultiAlignmentHelper spl : split) {
output.println(spl);
Expand Down
103 changes: 103 additions & 0 deletions src/main/resources/parameters/vdjcaligner_parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,108 @@
"relativeMinVFR3CDR3Score": 0.7,
"relativeMinVScore": 0.7,
"readsLayout": "Opposite"
},
"rna-seq": {
"vParameters": {
"geneFeatureToAlign": "VTranscriptWithout5UTR",
"parameters": {
"mapperKValue": 5,
"floatingLeftBound": false,
"floatingRightBound": true,
"mapperAbsoluteMinScore": 1.5,
"mapperRelativeMinScore": 0.7,
"mapperMatchScore": 1.0,
"mapperMismatchPenalty": -0.1,
"mapperOffsetShiftPenalty": -0.3,
"mapperMinSeedsDistance": 4,
"mapperMaxSeedsDistance": 10,
"minAlignmentLength": 15,
"maxAdjacentIndels": 2,
"alignmentStopPenalty": -1000,
"absoluteMinScore": 80.0,
"relativeMinScore": 0.87,
"maxHits": 7,
"scoring": {
"type": "linear",
"subsMatrix": "simple(match = 5, mismatch = -12)",
"gapPenalty": -21
}
}
},
"dParameters": {
"geneFeatureToAlign": "DRegion",
"absoluteMinScore": 25.0,
"relativeMinScore": 0.85,
"maxHits": 3,
"scoring": {
"type": "linear",
"subsMatrix": "simple(match = 5, mismatch = -12)",
"gapPenalty": -21
}
},
"jParameters": {
"geneFeatureToAlign": "JRegion",
"parameters": {
"mapperKValue": 5,
"floatingLeftBound": true,
"floatingRightBound": true,
"mapperAbsoluteMinScore": 1.5,
"mapperRelativeMinScore": 0.75,
"mapperMatchScore": 1.0,
"mapperMismatchPenalty": -0.1,
"mapperOffsetShiftPenalty": -0.3,
"mapperMinSeedsDistance": 4,
"mapperMaxSeedsDistance": 10,
"minAlignmentLength": 15,
"maxAdjacentIndels": 2,
"alignmentStopPenalty": -1000,
"absoluteMinScore": 70.0,
"relativeMinScore": 0.87,
"maxHits": 7,
"scoring": {
"type": "linear",
"subsMatrix": "simple(match = 5, mismatch = -12)",
"gapPenalty": -21
}
}
},
"cParameters": {
"geneFeatureToAlign": "CExon1",
"parameters": {
"mapperKValue": 5,
"floatingLeftBound": false,
"floatingRightBound": false,
"mapperAbsoluteMinScore": 1.5,
"mapperRelativeMinScore": 0.75,
"mapperMatchScore": 1.0,
"mapperMismatchPenalty": -0.1,
"mapperOffsetShiftPenalty": -0.3,
"mapperMinSeedsDistance": 4,
"mapperMaxSeedsDistance": 10,
"minAlignmentLength": 15,
"maxAdjacentIndels": 2,
"alignmentStopPenalty": -1000,
"absoluteMinScore": 40.0,
"relativeMinScore": 0.87,
"maxHits": 7,
"scoring": {
"type": "linear",
"subsMatrix": "simple(match = 5, mismatch = -12)",
"gapPenalty": -21
}
}
},
"vjAlignmentOrder": "VThenJ",
"includeDScore": true,
"includeCScore": true,
"mergerParameters": {
"minimalOverlap": 17,
"minimalIdentity": 0.9
},
"minSumScore": 200.0,
"maxHits": 5,
"relativeMinVFR3CDR3Score": 0.7,
"relativeMinVScore": 0.7,
"readsLayout": "Opposite"
}
}

0 comments on commit 883108f

Please sign in to comment.