1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952
|
package jgi;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Random;
import dna.AminoAcid;
import fileIO.ByteStreamWriter;
import fileIO.FileFormat;
import fileIO.ReadWrite;
import shared.Parse;
import shared.Parser;
import shared.PreParser;
import shared.Shared;
import shared.Timer;
import shared.Tools;
import stream.ConcurrentReadInputStream;
import stream.ConcurrentReadOutputStream;
import stream.FASTQ;
import stream.Read;
import structures.ByteBuilder;
import structures.ListNum;
import var2.Var;
/**
* @author Brian Bushnell
* @date June 1, 2016
*
*/
public class MutateGenome2 {
public static void main(String[] args){
Timer t=new Timer();
MutateGenome2 x=new MutateGenome2(args);
x.process(t);
//Close the print stream if it was redirected
Shared.closeStream(x.outstream);
}
public MutateGenome2(String[] args){
{//Preparse block for help, config files, and outstream
PreParser pp=new PreParser(args, getClass(), false);
args=pp.args;
outstream=pp.outstream;
}
Shared.setBufferLen(1);
FASTQ.FORCE_INTERLEAVED=FASTQ.TEST_INTERLEAVED=false;
Parser parser=new Parser();
parser.overwrite=true;
for(int i=0; i<args.length; i++){
String arg=args[i];
String[] split=arg.split("=");
String a=split[0].toLowerCase();
String b=split.length>1 ? split[1] : null;
if(parser.parse(arg, a, b)){
//do nothing
}else if(a.equals("parse_flag_goes_here")){
//Set a variable here
}else if(a.equals("period")){
period=Integer.parseInt(b);
}else if(a.equals("subrate") || a.equals("snprate")){
subRate=Float.parseFloat(b);
if(subRate>1){subRate/=100;}
}else if(a.equals("indelrate")){
indelRate=Float.parseFloat(b);
if(indelRate>1){indelRate/=100;}
}else if(a.equals("maxindel")){
maxIndel=Parse.parseIntKMG(b);
}else if(a.equals("indelspacing")){
indelSpacing=Parse.parseIntKMG(b);
}else if(a.equals("seed")){
seed=Long.parseLong(b);
}else if(a.equals("ploidy")){
ploidy=Integer.parseInt(b);
}else if(a.equals("nohomopolymers") || a.equals("nohomo") || a.equals("banhomopolymers") || a.equals("banhomo")){
banHomopolymers=Parse.parseBoolean(b);
}else if(a.equalsIgnoreCase("hetrate")){
hetRate=Float.parseFloat(b);
}else if(a.equals("prefix")){
prefix=b;
}else if(a.equals("vcf") || a.equals("outvcf") || a.equals("vcfout") || a.equals("vars") || a.equals("varsout") || a.equals("outvars")){
outVcf=b;
}else if(a.equals("id") || a.equals("identity")){
float x=Float.parseFloat(b);
if(x>1){x=x/100;}
x=1-x;
indelRate=x*0.01f;
subRate=x*0.99f;
}else if(a.equals("fraction") || a.equals("completeness")){
float x=Float.parseFloat(b);
if(x>1){x=x/100;}
genomeFraction=x;
}else{
outstream.println("Unknown parameter "+args[i]);
assert(false) : "Unknown parameter "+args[i];
// throw new RuntimeException("Unknown parameter "+args[i]);
}
}
errorRate=subRate+indelRate;
errorRate2=subRate+(indelRate*0.16666f*(maxIndel+1));
assert(subRate>=0 && subRate<=1) : "Substitution rate must be between 0 and 1, inclusive. Invalid value: "+subRate;
assert(indelRate>=0 && indelRate<=1) : "Indel rate must be between 0 and 1, inclusive. Invalid value: "+indelRate;
assert(errorRate>=0 && errorRate<=1) : "Total error rate must be between 0 and 1, inclusive. Invalid value: "+errorRate;
System.err.println(Tools.format("Target Identity: \t%.2f%%", (1-errorRate2)*100));
System.err.println(Tools.format("Substitution Rate: \t%.2f%%", subRate*100));
System.err.println(Tools.format("Indel Rate: \t%.2f%%", indelRate*100));
randy=Shared.threadLocalRandom(seed);
{//Process parser fields
Parser.processQuality();
maxReads=parser.maxReads;
in1=parser.in1;
out1=parser.out1;
overwrite=parser.overwrite;
append=parser.append;
}
//Ensure there is an input file
if(in1==null){throw new RuntimeException("Error - at least one input file is required.");}
//Ensure output files can be written
if(!Tools.testOutputFiles(overwrite, append, false, out1, outVcf)){
outstream.println((out1==null)+", "+(outVcf==null)+", "+out1+", "+outVcf);
throw new RuntimeException("\n\noverwrite="+overwrite+"; Can't write to output files "+out1+", "+outVcf+"\n");
}
//Ensure input files can be read
if(!Tools.testInputFiles(false, true, in1)){
throw new RuntimeException("\nCan't read some input files.\n");
}
//Ensure that no file was specified multiple times
if(!Tools.testForDuplicateFiles(true, in1, out1, outVcf)){
throw new RuntimeException("\nSome file names were specified multiple times.\n");
}
ffout1=FileFormat.testOutput(out1, FileFormat.FASTA, null, true, overwrite, append, false);
ffoutVcf=FileFormat.testOutput(outVcf, FileFormat.VCF, null, true, overwrite, append, false);
ffin1=FileFormat.testInput(in1, FileFormat.FASTA, null, true, true);
}
void process(Timer t){
final ConcurrentReadInputStream cris;
{
cris=ConcurrentReadInputStream.getReadInputStream(maxReads, true, ffin1, null);
cris.start();
}
final ConcurrentReadOutputStream ros;
if(out1!=null){
final int buff=4;
if(cris.paired() && (in1==null || !in1.contains(".sam"))){
outstream.println("Writing interleaved.");
}
assert(!out1.equalsIgnoreCase(in1) && !out1.equalsIgnoreCase(in1)) : "Input file and output file have same name.";
ros=ConcurrentReadOutputStream.getStream(ffout1, null, buff, null, false);
ros.start();
}else{ros=null;}
{
ListNum<Read> ln=cris.nextList();
ArrayList<Read> reads=(ln!=null ? ln.list : null);
if(reads!=null && !reads.isEmpty()){
Read r=reads.get(0);
assert((ffin1==null || ffin1.samOrBam()) || (r.mate!=null)==cris.paired());
}
ByteBuilder[] bba=new ByteBuilder[ploidy];
for(int i=0; i<bba.length; i++){bba[i]=new ByteBuilder();}
ArrayList<String> headers=(ffoutVcf==null ? null : new ArrayList<String>());
ArrayList<SmallVar> vars=(ffoutVcf==null ? null : new ArrayList<SmallVar>());
ArrayList<SmallVar> varsTemp=(ffoutVcf==null ? null : new ArrayList<SmallVar>());
while(ln!=null && reads!=null && reads.size()>0){//ln!=null prevents a compiler potential null access warning
if(verbose){outstream.println("Fetched "+reads.size()+" reads.");}
ArrayList<Read> mutants=new ArrayList<Read>(ploidy*reads.size());
for(int idx=0; idx<reads.size(); idx++){
final Read r1=reads.get(idx);
readsProcessed++;
basesProcessed+=r1.length();
ArrayList<Read> mutant=processRead(r1, bba, varsTemp, headers);
mutants.addAll(mutant);
if(vars!=null){vars.addAll(varsTemp);}
}
if(ros!=null){ros.add(mutants, ln.id);}
cris.returnList(ln);
if(verbose){outstream.println("Returned a list.");}
ln=cris.nextList();
reads=(ln!=null ? ln.list : null);
}
if(ln!=null){
cris.returnList(ln.id, ln.list==null || ln.list.isEmpty());
}
writeVars(vars, headers);
}
ReadWrite.closeStreams(cris, ros);
if(verbose){outstream.println("Finished.");}
{
t.stop();
//Calculate units per nanosecond
double brnano=basesRetained/(double)(t.elapsed);
//Add "k" and "m" for large numbers
long mutationsAdded=subsAdded+insAdded+delsAdded+junctionsAdded;
String brstring=(basesRetained<100000 ? ""+basesRetained : basesRetained<100000000 ? (basesRetained/1000)+"k" : (basesRetained/1000000)+"m");
String mastring=(mutationsAdded<100000 ? ""+mutationsAdded : mutationsAdded<100000000 ? (mutationsAdded/1000)+"k" : (mutationsAdded/1000000)+"m");
String sastring=(subsAdded<100000 ? ""+subsAdded : subsAdded<100000000 ? (subsAdded/1000)+"k" : (subsAdded/1000000)+"m");
String iastring=(insAdded<100000 ? ""+insAdded : insAdded<100000000 ? (insAdded/1000)+"k" : (insAdded/1000000)+"m");
String dastring=(delsAdded<100000 ? ""+delsAdded : delsAdded<100000000 ? (delsAdded/1000)+"k" : (delsAdded/1000000)+"m");
String jastring=(junctionsAdded<100000 ? ""+junctionsAdded : junctionsAdded<100000000 ? (junctionsAdded/1000)+"k" : (junctionsAdded/1000000)+"m");
//Format the strings so they have they are right-justified
while(brstring.length()<8){brstring=" "+brstring;}
while(mastring.length()<8){mastring=" "+mastring;}
while(sastring.length()<8){sastring=" "+sastring;}
while(iastring.length()<8){iastring=" "+iastring;}
while(dastring.length()<8){dastring=" "+dastring;}
while(jastring.length()<8){jastring=" "+jastring;}
outstream.println(Tools.timeReadsBasesProcessed(t, readsProcessed, basesProcessed, 8));
if(genomeFraction<1){outstream.println("Bases Retained: "+brstring+" \t"+Tools.format("%.2fm bases/sec", brnano*1000));}
outstream.println("Mutations Added: "+mastring+" \t"+Tools.format("%.2f%% Identity", 100f-mutationLengthAdded*100f/basesProcessed));
outstream.println("Subs Added: "+sastring);
outstream.println("Insertions Added: "+iastring);
outstream.println("Deletions Added: "+dastring);
outstream.println("Junctions Added: "+jastring);
}
t.stop();
}
public int[] makePresentArray(){
int[] present=new int[ploidy];
if(ploidy>1 && randy.nextFloat()<hetRate){
int sum=0;
while(sum<1 || sum>=ploidy){
sum=0;
Arrays.fill(present, 0);
for(int i=0; i<ploidy; i++){
int x=randy.nextInt(2);
sum+=x;
present[i]=x;
}
}
}else{
Arrays.fill(present, 1);
}
return present;
}
public boolean isHomopolymerDel(byte[] bases, int pos, int len){
final byte b=bases[pos];
for(int i=1; i<len; i++){
if(bases[pos+i]!=b){return false;}
}
if(pos>0 && bases[pos-1]==b){return true;}
if(pos<bases.length-1 && bases[pos+1]==b){return true;}
return false;
}
public boolean isHomopolymerIns(byte[] bases, int pos, byte b){
if(b==bases[pos]){return true;}
if(pos>0 && b==bases[pos-1]){return true;}
return false;
}
public boolean isHomopolymerIns(byte[] bases, int pos, StringBuilder sb){
byte b=(byte) sb.charAt(0);
for(int i=1; i<sb.length(); i++) {
if(sb.charAt(i)!=b){return false;}
}
return isHomopolymerIns(bases, pos, b);
}
public ArrayList<Read> processRead(Read r, ByteBuilder[] bba, ArrayList<SmallVar> vars, ArrayList<String> headers){
if(r.aminoacid()) {
return processReadAmino(r, bba, vars, headers);
}
//Setup
for(ByteBuilder bb : bba){bb.clear();}
r.quality=null;
if(headers!=null){headers.add("<ID="+r.id+",length="+r.length()+">");}
if(vars!=null){vars.clear();}
//Handle genomeFraction
if(genomeFraction<1){
final byte[] bases0=r.bases;
int retain=(int)(bases0.length*(genomeFraction));
if(retain<bases0.length){
final int start=randy.nextInt(bases0.length);
int i=0, j=start;
for(; i<retain && j<bases0.length; i++, j++){
bba[0].append(bases0[j]);
}
j=0;
if(i<retain){
junctionsAdded++;
mutationLengthAdded++;
} //Chimeric junction
for(; i<retain; i++, j++){
bba[0].append(bases0[j]);
}
r.bases=bba[0].toBytes();
bba[0].clear();
}
}
//Handle mutations
final byte[] bases=r.bases;
if(period>-1){
int basesSinceMutation=0;
char prevChar='N';
for(int i=0; i<bases.length; i++){
final byte b0=bases[i];
byte b=b0;
if(basesSinceMutation>=period && AminoAcid.isFullyDefined(b)){
basesSinceMutation=0;
float x=randy.nextFloat()*errorRate;
int[] present=makePresentArray();
if(x<subRate){
b=AminoAcid.numberToBase[((AminoAcid.baseToNumber[b]+randy.nextInt(3)+1)&3)];
for(int haplo=0; haplo<ploidy; haplo++){
if(present[haplo]==1){
bba[haplo].append(b);
}else{
bba[haplo].append(b0);
}
}
if(vars!=null){vars.add(new SmallVar(SUB, i, i+1, Character.toString((char)b), Character.toString((char)b0), prevChar, r.id, r.numericID, present));}
subsAdded++;
mutationLengthAdded++;
}else if(randy.nextBoolean()){//del
if(banHomopolymers && isHomopolymerDel(bases, i, 1)) {
i--;
}else{
for(int haplo=0; haplo<ploidy; haplo++){
if(present[haplo]==1){
//do nothing
}else{
bba[haplo].append(b0);
}
}
if(vars!=null){vars.add(new SmallVar(DEL, i, i+1, "", Character.toString((char)b0), prevChar, r.id, r.numericID, present));}
delsAdded++;
mutationLengthAdded++;
}
}else{//ins
b=AminoAcid.numberToBase[randy.nextInt(4)];
while(banHomopolymers && isHomopolymerIns(bases, i, b)) {
b=AminoAcid.numberToBase[randy.nextInt(4)];
}
for(int haplo=0; haplo<ploidy; haplo++){
if(present[haplo]==1){
bba[haplo].append(b);
}else{
//do nothing
}
}
if(vars!=null){vars.add(new SmallVar(INS, i, i, Character.toString((char)b), "", prevChar, r.id, r.numericID, present));}
i--;
insAdded++;
mutationLengthAdded++;
}
}else{
basesSinceMutation++;
for(ByteBuilder bb : bba){
bb.append(b);
}
}
prevChar=(char) b0;
}
}else{
char prevChar='N';
int lastIndel=-1;
for(int i=0; i<bases.length; i++){
final byte b0=bases[i];
byte b=b0;
float x=randy.nextFloat();
if(x<errorRate && AminoAcid.isFullyDefined(b)){
int[] present=makePresentArray();
// System.err.println(x+", "+errorRate+", "+subRate);
if(x<subRate){
subsAdded++;
mutationLengthAdded++;
b=AminoAcid.numberToBase[((AminoAcid.baseToNumber[b]+randy.nextInt(3)+1)&3)];
for(int haplo=0; haplo<ploidy; haplo++){
if(present[haplo]==1){
bba[haplo].append(b);
}else{
bba[haplo].append(b0);
}
}
if(vars!=null){vars.add(new SmallVar(SUB, i, i+1, Character.toString((char)b), Character.toString((char)b0), prevChar, r.id, r.numericID, present));}
}else if(i-lastIndel>indelSpacing){
int lim=Tools.min(maxIndel, bases.length-i-1);
if(lim>=1){
int len=1+(Tools.min(randy.nextInt(lim), randy.nextInt(lim), randy.nextInt(lim)));
if(randy.nextBoolean()){//del
if(banHomopolymers && isHomopolymerDel(bases, i, len)) {
i--;
}else{
delsAdded++;
mutationLengthAdded+=len;
byte[] ref=new byte[len];
for(int rpos=0; rpos<len; rpos++){ref[rpos]=bases[i+rpos];}
//do nothing
for(int haplo=0; haplo<ploidy; haplo++){
if(present[haplo]==1){
//do nothing
}else{
bba[haplo].append(ref);
}
}
if(vars!=null){vars.add(new SmallVar(DEL, i, i+len, "", new String(bases, i, len), prevChar, r.id, r.numericID, present));}
i=i+len-1;
}
}else{//ins
insAdded++;
mutationLengthAdded+=len;
if(len==1){
b=AminoAcid.numberToBase[randy.nextInt(4)];
while(banHomopolymers && isHomopolymerIns(bases, i, b)) {
b=AminoAcid.numberToBase[randy.nextInt(4)];
}
for(int haplo=0; haplo<ploidy; haplo++){
if(present[haplo]==1){
bba[haplo].append(b);
}else{
//do nothing
}
}
if(vars!=null){vars.add(new SmallVar(INS, i, i, Character.toString((char)b), "", prevChar, r.id, r.numericID, present));}
}else{
StringBuilder sb=new StringBuilder();
while(sb.length()==0 || (banHomopolymers && isHomopolymerIns(bases, i, sb))) {
sb.setLength(0);
while(sb.length()<len){
b=AminoAcid.numberToBase[randy.nextInt(4)];
sb.append((char)b);
}
}
for(int haplo=0; haplo<ploidy; haplo++){
if(present[haplo]==1){
bba[haplo].append(sb);
}else{
//do nothing
}
}
if(vars!=null){vars.add(new SmallVar(INS, i, i, sb.toString(), "", prevChar, r.id, r.numericID, present));}
}
i--;
}
lastIndel=i;
}
}
}else{
for(ByteBuilder bb : bba){
bb.append(b);
}
}
prevChar=(char) b0;
}
}
condenseVars(vars);
//Modify read
r.bases=bba[0].toBytes();
if(prefix!=null){
r.id=prefix+r.numericID;
}
basesRetained+=r.bases.length;
ArrayList<Read> ret=new ArrayList<Read>();
if(ploidy==1){ret.add(r);}
else{
for(int i=0; i<ploidy; i++){
ret.add(new Read(bba[i].toBytes(), null, r.id+"_haplo_"+i, r.numericID));
}
}
return ret;
}
public ArrayList<Read> processReadAmino(Read r, ByteBuilder[] bba, ArrayList<SmallVar> vars, ArrayList<String> headers){
assert(r.aminoacid());
//Setup
for(ByteBuilder bb : bba){bb.clear();}
r.quality=null;
if(headers!=null){headers.add("<ID="+r.id+",length="+r.length()+">");}
if(vars!=null){vars.clear();}
//Handle genomeFraction
if(genomeFraction<1){
final byte[] bases0=r.bases;
int retain=(int)(bases0.length*(genomeFraction));
if(retain<bases0.length){
final int start=randy.nextInt(bases0.length);
int i=0, j=start;
for(; i<retain && j<bases0.length; i++, j++){
bba[0].append(bases0[j]);
}
j=0;
if(i<retain){
junctionsAdded++;
mutationLengthAdded++;
} //Chimeric junction
for(; i<retain; i++, j++){
bba[0].append(bases0[j]);
}
r.bases=bba[0].toBytes();
bba[0].clear();
}
}
//Handle mutations
final byte[] bases=r.bases;
if(period>-1){
int basesSinceMutation=0;
char prevChar='X';
for(int i=0; i<bases.length; i++){
final byte b0=bases[i];
byte b=b0;
if(basesSinceMutation>=period && AminoAcid.isFullyDefinedAA(b)){
basesSinceMutation=0;
float x=randy.nextFloat()*errorRate;
int[] present=makePresentArray();
if(x<subRate){
b=AminoAcid.numberToAcid[((AminoAcid.acidToNumber[b]+randy.nextInt(20)+1)%21)];
for(int haplo=0; haplo<ploidy; haplo++){
if(present[haplo]==1){
bba[haplo].append(b);
}else{
bba[haplo].append(b0);
}
}
if(vars!=null){vars.add(new SmallVar(SUB, i, i+1, Character.toString((char)b), Character.toString((char)b0), prevChar, r.id, r.numericID, present));}
subsAdded++;
mutationLengthAdded++;
}else if(randy.nextBoolean()){//del
for(int haplo=0; haplo<ploidy; haplo++){
if(present[haplo]==1){
//do nothing
}else{
bba[haplo].append(b0);
}
}
if(vars!=null){vars.add(new SmallVar(DEL, i, i+1, "", Character.toString((char)b0), prevChar, r.id, r.numericID, present));}
delsAdded++;
mutationLengthAdded++;
}else{//ins
b=AminoAcid.numberToAcid[randy.nextInt(21)];
for(int haplo=0; haplo<ploidy; haplo++){
if(present[haplo]==1){
bba[haplo].append(b);
}else{
//do nothing
}
}
if(vars!=null){vars.add(new SmallVar(INS, i, i, Character.toString((char)b), "", prevChar, r.id, r.numericID, present));}
i--;
insAdded++;
mutationLengthAdded++;
}
}else{
basesSinceMutation++;
for(ByteBuilder bb : bba){
bb.append(b);
}
}
prevChar=(char) b0;
}
}else{
char prevChar='N';
int lastIndel=-1;
for(int i=0; i<bases.length; i++){
final byte b0=bases[i];
byte b=b0;
float x=randy.nextFloat();
if(x<errorRate && AminoAcid.isFullyDefinedAA(b)){
int[] present=makePresentArray();
// System.err.println(x+", "+errorRate+", "+subRate);
if(x<subRate){
subsAdded++;
mutationLengthAdded++;
b=AminoAcid.numberToAcid[((AminoAcid.acidToNumber[b]+randy.nextInt(20)+1)%21)];
for(int haplo=0; haplo<ploidy; haplo++){
if(present[haplo]==1){
bba[haplo].append(b);
}else{
bba[haplo].append(b0);
}
}
if(vars!=null){vars.add(new SmallVar(SUB, i, i+1, Character.toString((char)b), Character.toString((char)b0), prevChar, r.id, r.numericID, present));}
}else if(i-lastIndel>indelSpacing){
int lim=Tools.min(maxIndel, bases.length-i-1);
if(lim>=1){
int len=1+(Tools.min(randy.nextInt(lim), randy.nextInt(lim), randy.nextInt(lim)));
if(randy.nextBoolean()){//del
delsAdded++;
mutationLengthAdded+=len;
byte[] ref=new byte[len];
for(int rpos=0; rpos<len; rpos++){ref[rpos]=bases[i+rpos];}
//do nothing
for(int haplo=0; haplo<ploidy; haplo++){
if(present[haplo]==1){
//do nothing
}else{
bba[haplo].append(ref);
}
}
if(vars!=null){vars.add(new SmallVar(DEL, i, i+len, "", new String(bases, i, len), prevChar, r.id, r.numericID, present));}
i=i+len-1;
}else{//ins
insAdded++;
mutationLengthAdded+=len;
if(len==1){
b=AminoAcid.numberToAcid[randy.nextInt(21)];
for(int haplo=0; haplo<ploidy; haplo++){
if(present[haplo]==1){
bba[haplo].append(b);
}else{
//do nothing
}
}
if(vars!=null){vars.add(new SmallVar(INS, i, i, Character.toString((char)b), "", prevChar, r.id, r.numericID, present));}
}else{
StringBuilder sb=new StringBuilder();
while(sb.length()<len){
b=AminoAcid.numberToAcid[randy.nextInt(21)];
sb.append((char)b);
}
for(int haplo=0; haplo<ploidy; haplo++){
if(present[haplo]==1){
bba[haplo].append(sb);
}else{
//do nothing
}
}
if(vars!=null){vars.add(new SmallVar(INS, i, i, sb.toString(), "", prevChar, r.id, r.numericID, present));}
}
i--;
}
lastIndel=i;
}
}
}else{
for(ByteBuilder bb : bba){
bb.append(b);
}
}
prevChar=(char) b0;
}
}
condenseVars(vars);
//Modify read
r.bases=bba[0].toBytes();
if(prefix!=null){
r.id=prefix+r.numericID;
}
basesRetained+=r.bases.length;
ArrayList<Read> ret=new ArrayList<Read>();
if(ploidy==1){ret.add(r);}
else{
for(int i=0; i<ploidy; i++){
ret.add(new Read(bba[i].toBytes(), null, r.id+"_haplo_"+i, r.numericID));
}
}
return ret;
}
/*--------------------------------------------------------------*/
private void condenseVars(ArrayList<SmallVar> vars){
if(vars==null || vars.size()<2){return;}
{//Pass 1: fuse indels into subs
SmallVar current=null;
for(int i=0; i<vars.size(); i++){
SmallVar next=vars.get(i);
if(next.type==SUB){
current=null;
}else if(current==null){
current=next;
}else if(current.stop==next.start && current.type!=next.type && current.sharesPhase(next)){
if(current.type==DEL){
assert(next.type==INS) : next.type;
//Change the del to a sub
current.type=SUB;
current.alt=next.alt;
current=null;
vars.set(i, null);
}else if(current.type==INS){
assert(next.type==DEL) : next.type;
//Change the ins to a sub
current.type=SUB;
current.ref=next.ref;
current.stop=next.stop;
current=null;
vars.set(i, null);
}else{
assert(false) : current.type;
}
}else{
current=next;
}
}
Tools.condenseStrict(vars);
if(vars.size()<2){return;}
}
{//Pass 2: lengthen indels
SmallVar current=null;
for(int i=0; i<vars.size(); i++){
SmallVar next=vars.get(i);
if(next.type==SUB){
current=null;
if(!next.valid()){vars.set(i, null);}
}else if(current==null){
current=next;
}else if(current.stop==next.start && current.type==next.type && current.sharesPhase(next)){
if(current.type==DEL){
assert(next.type==DEL) : next.type;
//Lengthen the deletion
current.stop=next.stop;
current.ref+=next.ref;
vars.set(i, null);
}else if(current.type==INS){
assert(next.type==INS) : next.type;
//Lengthen the insertion
current.alt+=next.alt;
vars.set(i, null);
}else{
assert(false) : current.type;
}
}else{
current=next;
}
}
Tools.condenseStrict(vars);
}
}
void writeVars(ArrayList<SmallVar> vars, ArrayList<String> headers){
if(ffoutVcf==null){return;}
ByteStreamWriter bsw=new ByteStreamWriter(ffoutVcf);
bsw.start();
ByteBuilder bb=new ByteBuilder();
bb.appendln("##fileformat=VCFv4.2");
bb.appendln("##BBMapVersion="+Shared.BBTOOLS_VERSION_STRING);
bb.appendln("##Program=MutateGenome");
for(String s : headers){
bb.append("##contig=").appendln(s);
}
bb.appendln("##FILTER=<ID=FAIL,Description=\"Fail\">");
bb.appendln("##FILTER=<ID=PASS,Description=\"Pass\">");
bb.appendln("##INFO=<ID=SN,Number=1,Type=Integer,Description=\"Scaffold Number\">");
bb.appendln("##INFO=<ID=STA,Number=1,Type=Integer,Description=\"Start\">");
bb.appendln("##INFO=<ID=STO,Number=1,Type=Integer,Description=\"Stop\">");
bb.appendln("##INFO=<ID=TYP,Number=1,Type=String,Description=\"Type\">");
bb.appendln("##FORMAT=<ID=GT,Number=1,Type=String,Description=\"Genotype\">");
bb.appendln("##FORMAT=<ID=SC,Number=1,Type=Float,Description=\"Score\">");
bb.appendln("##FORMAT=<ID=PF,Number=1,Type=String,Description=\"Pass Filter\">");
bb.appendln("#CHROM\tPOS\tID\tREF\tALT\tQUAL\tFILTER\tINFO\tFORMAT\t"+(out1==null ? "sample" : ReadWrite.stripToCore(out1)));
bsw.print(bb);
bb.clear();
for(SmallVar v : vars){
v.toVcf(bb);
bb.nl();
if(bb.length()>=64000){
bsw.print(bb);
bb.clear();
}
}
if(bb.length()>=0){
bsw.print(bb);
bb.clear();
}
errorState=bsw.poisonAndWait()|errorState;
}
/*--------------------------------------------------------------*/
private static class SmallVar{
SmallVar(int type_, int start_, int stop_, String alt_, String ref_, char prevChar_, String rname_, long scafNum_, int[] present_){
type=type_;
start=start_;
stop=stop_;
alt=alt_;
ref=ref_;
prevChar=prevChar_;
rname=rname_;
scafNum=scafNum_;
present=present_;
}
boolean valid(){
return type!=SUB || !alt.equals(ref);
}
void toVcf(ByteBuilder bb){
bb.append(rname).append('\t');
if(type==SUB){
bb.append(start+1).append('\t');
bb.append('.').append('\t');
bb.append(ref).append('\t');
bb.append(alt).append('\t');
}else if(type==DEL || type==INS){
bb.append(start).append('\t');
bb.append('.').append('\t');
bb.append(prevChar).append(ref).append('\t');
bb.append(prevChar).append(alt).append('\t');
}else{assert(false);}
bb.append("60.00").append('\t');
bb.append("PASS").append('\t');
bb.append("SN=").append(scafNum).append(';');
bb.append("STA=").append(start).append(';');
bb.append("STO=").append(stop).append(';');
bb.append("TYP=").append(Var.typeArray[type]).append('\t');
bb.append("GT:SC:PF").append('\t');
bb.append(present[0]);
for(int i=1; i<present.length; i++){bb.append('|').append(present[i]);}
bb.append(':');
bb.append("60.00").append(':');
bb.append("PASS");
}
boolean sharesPhase(SmallVar sv){
for(int i=0; i<present.length; i++){
if(present[i]!=sv.present[i]){return false;}
}
return true;
}
int type;
final int start;
int stop;
String ref;
String alt;
final char prevChar;
final String rname;
final long scafNum;
final int[] present;
}
/*--------------------------------------------------------------*/
private String in1=null;
private String out1=null;
private String outVcf=null;
private String prefix=null;
private final FileFormat ffin1;
private final FileFormat ffout1;
private final FileFormat ffoutVcf;
/*--------------------------------------------------------------*/
private long maxReads=-1;
// private long mutationsAdded=0;
private int ploidy=1;
private float hetRate=0.5f;
private long mutationLengthAdded=0;
private long subsAdded=0;
private long insAdded=0;
private long delsAdded=0;
private long junctionsAdded=0;
private int period=-1;
private float genomeFraction=1;
private long basesRetained;
private long readsProcessed=0;
private long basesProcessed=0;
private float subRate=0;
private float indelRate=0;
private int maxIndel=1;
private int indelSpacing=10;
private boolean banHomopolymers=false;
private final float errorRate;
private final float errorRate2;
private final Random randy;
private long seed=-1;
/*--------------------------------------------------------------*/
/** True if an error was encountered */
public boolean errorState=false;
/** Overwrite existing output files */
private boolean overwrite=true;
/** Append to existing output files */
private boolean append=false;
private static final int SUB=Var.SUB, INS=Var.INS, DEL=Var.DEL;
private java.io.PrintStream outstream=System.err;
public static boolean verbose=false;
}
|