-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathrun-asm-pipeline.sh
886 lines (761 loc) · 43.6 KB
/
run-asm-pipeline.sh
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
#!/bin/bash
##########
#The MIT License (MIT)
#
# Copyright (c) 2018 Aiden Lab
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
##########
#
# 3D-DNA de novo genome assembly pipeline.
#
version=180922
echo `readlink -f $0`" "$*
echo "version: "${version}
#set -x
USAGE_short="
*****************************************************
3D de novo assembly: version 180114
USAGE: ./run-asm-pipeline.sh [options] <path_to_input_fasta> <path_to_input_mnd>
DESCRIPTION:
This is a script to assemble draft assemblies (represented in input by draft fasta and deduplicated list of alignments of Hi-C reads to this fasta as produced by the Juicer pipeline) into chromosome-length scaffolds. The script will produce an output fasta file, a Hi-C map of the final assembly, and a few supplementary annotation files to help review the result in Juicebox.
ARGUMENTS:
path_to_input_fasta Specify file path to draft assembly fasta file.
path_to_input_mnd Specify path to deduplicated list of alignments of Hi-C reads to the draft assembly fasta as produced by the Juicer pipeline: the merged_nodups file (mnd).
OPTIONS:
-m|--mode haploid/diploid Runs in specific mode, either haploid or diploid (default is haploid).
-i|--input input_size Specifies threshold input contig/scaffold size (default is 15000). Contigs/scaffolds smaller than input_size are going to be ignored.
-r|--rounds number_of_edit_rounds Specifies number of iterative rounds for misjoin correction (default is 2).
-s|--stage stage Fast forward to later assembly steps, can be polish, split, seal, merge and finalize.
-h|--help Shows this help. Type --help for a full set of options.
*****************************************************
"
USAGE_long="
*****************************************************
3D de novo assembly: version 170123
USAGE: ./run-asm-pipeline.sh [options] <path_to_input_fasta> <path_to_input_mnd>
DESCRIPTION:
This is a script to assemble draft assemblies (represented in input by draft fasta and deduplicated list of alignments of Hi-C reads to this fasta as produced by the Juicer pipeline) into chromosome-length scaffolds. The script will produce an output fasta file, a Hi-C map of the final assembly, and a few supplementary annotation files to help review the result in Juicebox.
ARGUMENTS:
path_to_input_fasta Specify file path to draft assembly fasta file.
path_to_input_mnd Specify path to deduplicated list of alignments of Hi-C reads to the draft assembly fasta as produced by the Juicer pipeline: the merged_nodups file (mnd).
OPTIONS:
-h Shows main options.
--help Shows this help.
-m|--mode haploid/diploid Runs in specific mode, either haploid or diploid (default is haploid).
-i|--input input_size Specifies threshold input contig/scaffold size (default is 15000). Contigs/scaffolds smaller than input_size are going to be ignored.
-r|--rounds number_of_edit_rounds Specifies number of iterative rounds for misjoin correction (default is 2).
-s|--stage stage Fast forward to later assembly steps, can be polish, split, seal, merge and finalize.
ADDITIONAL OPTIONS:
**scaffolder**
-q|--mapq mapq Mapq threshold for scaffolding and visualization (default is 1).
**misjoin detector**
--editor-coarse-resolution editor_coarse_resolution
Misjoin editor coarse matrix resolution, should be one of the following: 2500000, 1000000, 500000, 250000, 100000, 50000, 25000, 10000, 5000, 1000 (default is 25000).
--editor-coarse-region editor_coarse_region
Misjoin editor triangular motif region size (default is 125000).
--editor-coarse-stringency editor_coarse_stringency
Misjoin editor stringency parameter (default is 55).
--editor-saturation-centile editor_saturation_centile
Misjoin editor saturation parameter (default is 5).
--editor-fine-resolution editor_fine_resiolution
Misjoin editor fine matrix resolution, should be one of the following: 2500000, 1000000, 500000, 250000, 100000, 50000, 25000, 10000, 5000, 1000 (default is 1000).
--editor-repeat-coverage editor_repeat_coverage
Misjoin editor threshold repeat coverage (default is 2).
**polisher**
--polisher-input-size polisher_input_size
Polisher input size threshold. Scaffolds smaller than polisher_input_size are going to be placed into unresolved (default is 1000000).
--polisher-coarse-resolution editor_coarse_resolution
Polisher coarse matrix resolution, should be one of the following: 2500000, 1000000, 500000, 250000, 100000, 50000, 25000, 10000, 5000, 1000 (default is 25000).
--polisher-coarse-region editor_coarse_region
Polisher triangular motif region size (default is 3000000).
--polisher-coarse-stringency editor_coarse_stringency
Polisher stringency parameter (default is 55).
--polisher-saturation-centile editor_saturation_centile
Polisher saturation parameter (default is 5).
--polisher-fine-resolution editor_fine_resiolution
Polisher fine matrix resolution, should be one of the following: 2500000, 1000000, 500000, 250000, 100000, 50000, 25000, 10000, 5000, 1000 (default is 1000).
**splitter**
--splitter-input-size splitter_input_size
Splitter input size threshold. Scaffolds smaller than polisher_input_size are going to be placed into unresolved (Default: 1000000).
--splitter-coarse-resolution splitter_coarse_resolution
Splitter coarse matrix resolution, should be one of the following: 2500000, 1000000, 500000, 250000, 100000, 50000, 25000, 10000, 5000, 1000 (Default: 25000).
--splitter-coarse-region splitter_coarse_region
Splitter triangular motif region size (Default: 3000000).
--splitter-coarse-stringency splitter_coarse_stringency
Splitter stringency parameter (Default: 55).
--splitter-saturation-centile splitter_saturation_centile
Splitter saturation parameter (Default: 5).
--splitter-fine-resolution splitter_fine_resiolution
Splitter fine matrix resolution, should be one of the following: 2500000, 1000000, 500000, 250000, 100000, 50000, 25000, 10000, 5000, 1000 (Default: 1000).
**merger**
--merger-search-band merger_search_band
Distance (in bp) within which to locally search for alternative haplotypes to a given contig or scaffold, from the position of their suggested incorporation in the assembly. The larger the original input contigs/scaffolds, the larger band size it might be necessary to set. Default: 3000000.
--merger-alignment-score merger_alignment_score
Minimal LASTZ alignment score for nearby sequences (located in the assembly within the distance defined by the merger_search_band parameter) to be recongnized as alternative haplotypes. Default: 50000000.
--merger-alignment-identity merger_alignment_identity
Minimal identity score required from similar nearby sequences (per length) for them to be classified as alternative haplotypes. Default: 20.
--merger-alignment-length merger_alignment_length
Minimal length necessary to recognize similar nearby sequences as alternative haplotypes. Default: 20000.
--merger-lastz-options merger_lastz_options
Option string to customize LASTZ alignment. Default: \"--gfextend\ --gapped\ --chain=200,200\"
**finalizer**
-g|--gap-size gap_size
Gap size to be added between scaffolded sequences in the final chromosome-length scaffolds (default is 500).
**supplementary**
-e|--early-exit
Option to exit after first round of scaffolding.
-f|--fast-start
Option to pick up processing assuming the first round of scaffolding is done. In conjunction with --early-exit this option is to help tune the parameters for best performance.
--sort-output
Option to sort the chromosome-length scaffolds by size, in the descending order.
--build-gapped-map
Option to output an additional contact map corresponding to the assembly after the gaps have been added between scaffolded sequences.
*****************************************************
"
pipeline=`cd "$( dirname $0)" && pwd`
## default parameter setup
diploid="false" # by default run haploid pipeline
input_size=15000 # contigs/scaffolds smaller than input_size are ignored
MAX_ROUNDS=2 # use 2 for Hs2 and 9 for AaegL4
mapq=1 # default read mapping quality threshold for Hi-C scaffolder
# misassembly detector and editor default params
editor_coarse_resolution=25000
editor_fine_resolution=1000
editor_coarse_region=125000
editor_coarse_stringency=55
editor_saturation_centile=5
editor_repeat_coverage=2
# polisher default params
polisher_coarse_resolution=100000
polisher_fine_resolution=1000
polisher_coarse_region=3000000
polisher_coarse_stringency=55
polisher_saturation_centile=5
polisher_input_size=1000000
# splitter detection default params
splitter_input_size=100000 # in principle don't really need this, just moves smallish scaffolds to the back
splitter_coarse_resolution=100000
splitter_fine_resolution=1000
splitter_coarse_region=3000000
splitter_coarse_stringency=55
splitter_saturation_centile=5
# merger default params after option handling
default_merger_search_band=3000000
default_merger_alignment_score=50000000
default_merger_alignment_identity=20
default_merger_alignment_length=20000
default_merger_lastz_options=\"--gfextend\ --gapped\ --chain=200,200\"
# finalizer default params
gap_size=500 # default length of gaps to be added between scaffolded sequences in the chrom-length scaffolds
# supplementary options
stage="" # by default run full pipeline
early=false
fast=false
sort_output=false
build_gapped_map=false
############### HANDLE OPTIONS ###############
while :; do
case $1 in
-h)
echo "$USAGE_short" >&1
exit 0
;;
--help)
echo "$USAGE_long" >&1
exit 0
;;
## SHORT MENU OPTIONS
-m|--mode) OPTARG=$2
if [ "$OPTARG" == "haploid" ] || [ "$OPTARG" == "diploid" ]; then
echo >&1 " -m|--mode flag was triggered. Running in $OPTARG mode."
else
echo ":( Unrecognized value for mode flag. Running with default parameters (--mode haploid)." >&2
fi
if [ "$OPTARG" == "diploid" ]; then
diploid="true"
fi
shift
;;
-r|--rounds) OPTARG=$2
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]] && [[ $OPTARG -ge 0 ]]; then
echo " -r|--rounds flag was triggered, will run $OPTARG round(s) of misjoin correction." >&1
MAX_ROUNDS=$OPTARG
else
echo ":( Wrong syntax for number of iterative rounds of misjoin correction. Using the default value ${MAX_ROUNDS}." >&2
fi
shift
;;
-i|--input) OPTARG=$2
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]]; then
echo " -i|--input flag was triggered, filtering draft contigs/scaffolds smaller than $OPTARG." >&1
input_size=$OPTARG
else
echo ":( Wrong syntax for input size threshold. Using the default value ${input_size}." >&2
fi
shift
;;
# scaffolder
-q|--mapq) OPTARG=$2 ##TODO: check that propagates consistently, not tested sufficiently
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]]; then
echo " -q|--mapq flag was triggered, scaffolding using reads with at least $OPTARG mapping quality." >&1
mapq=$OPTARG
else
echo ":( Wrong syntax for mapping quality. Using the default value ${mapq}." >&2
fi
shift
;;
# organizational
-s|--stage) OPTARG=$2
if [ "$OPTARG" == "scaffold" ] || [ "$OPTARG" == "polish" ] || [ "$OPTARG" == "split" ] || [ "$OPTARG" == "seal" ] || [ "$OPTARG" == "merge" ] || [ "$OPTARG" == "finalize" ]; then
echo " -s|--stage flag was triggered, fast-forwarding to \"$OPTARG\" pipeline section." >&1
stage=$OPTARG
else
echo ":( Wrong syntax for pipeline stage. Exiting!" >&2
fi
shift
;;
## LONG MENU OPTIONS
# misjoin editor
--editor-saturation-centile) OPTARG=$2
re='^[0-9]+\.?[0-9]*$'
if [[ $OPTARG =~ $re ]] && [[ ${OPTARG%.*} -ge 0 ]] && ! [[ "$OPTARG" =~ ^0*(\.)?0*$ ]] && [[ $((${OPTARG%.*} + 1)) -le 100 ]]; then
echo " --editor-saturation-centile flag was triggered, misjoin editor saturation parameter set to ${OPTARG}%." >&1
editor_saturation_centile=$OPTARG
else
echo ":( Wrong syntax for misjoin editor saturation threshold. Using the default value ${editor_saturation_centile}%." >&2
fi
shift
;;
--editor-coarse-resolution) OPTARG=$2
re='^[0-9]+$' ## TODO: specify/generalize re matrix resolutions size
if [[ $OPTARG =~ $re ]]; then
echo " --editor-coarse-resolution flag was triggered, misjoin editor coarse matrix resolution set to $OPTARG." >&1
editor_coarse_resolution=$OPTARG
else
echo ":( Wrong syntax for misjoin editor coarse matrix resolution. Using the default value ${editor_coarse_resolution}." >&2
fi
shift
;;
--editor-coarse-region) OPTARG=$2
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]]; then
echo " --editor-coarse-region flag was triggered, misjoin editor coarse resolution depletion region size set to $OPTARG." >&1
editor_coarse_region=$OPTARG
else
echo ":( Wrong syntax for misjoin editor coarse resolution depletion region size. Using the default value ${editor_coarse_region}." >&2
fi
shift
;;
--editor-coarse-stringency) OPTARG=$2
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]] && [[ $OPTARG -gt 0 ]] && [[ $OPTARG -lt 100 ]]; then
echo " --editor-coarse-stringency flag was triggered, misjoin detection stringency parameter set to $OPTARG%." >&1
editor_coarse_stringency=$OPTARG
else
echo ":( Wrong syntax for misjoin detection stringency parameter. Using the default value ${editor_coarse_stringency}%." >&2
fi
shift
;;
--editor-fine-resolution) OPTARG=$2
re='^[0-9]+$' ## TODO: specify/generalize re matrix resolutions size
if [[ $OPTARG =~ $re ]]; then
echo " --editor-fine-resolution flag was triggered, misjoin detection fine matrix resolution set to $OPTARG." >&1
editor_fine_resolution=$OPTARG
else
echo ":( Wrong syntax for misjoin editor fine matrix resolution. Using the default value ${editor_fine_resolution}." >&2
fi
shift
;;
--editor-repeat-coverage) OPTARG=$2
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]] && [[ $OPTARG -gt 0 ]]; then
echo " --editor-repeat-coverage flag was triggered, threshold repeat coverage parameter set to $OPTARG." >&1
editor_repeat_coverage=$OPTARG
else
echo ":( Wrong syntax for misjoin detection stringency parameter. Using the default value ${editor_repeat_coverage}." >&2
fi
shift
;;
# polisher
--polisher-input-size) OPTARG=$2
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]]; then
echo " --polisher-input-size flag was triggered, excluding scaffolds smaller than $OPTARG when polishing." >&1
polisher_input_size=$OPTARG
else
echo ":( Wrong syntax for polisher scaffold input size threshold. Using the default value ${polisher_input_size}." >&2
fi
shift
;;
--polisher-saturation-centile) OPTARG=$2
re='^[0-9]+\.?[0-9]*$'
if [[ $OPTARG =~ $re ]] && [[ ${OPTARG%.*} -ge 0 ]] && ! [[ "$OPTARG" =~ ^0*(\.)?0*$ ]] && [[ $((${OPTARG%.*} + 1)) -le 100 ]]; then
echo " --polisher-saturation-centile flag was triggered, polisher saturation parameter set to ${OPTARG}%." >&1
polisher_saturation_centile=$OPTARG
else
echo ":( Wrong syntax for polisher saturation threshold. Using the default value ${polisher_saturation_centile}%." >&2
fi
shift
;;
--polisher-coarse-resolution) OPTARG=$2
re='^[0-9]+$' ## TODO: specify/generalize re matrix resolutions size
if [[ $OPTARG =~ $re ]]; then
echo " --polisher-coarse-resolution flag was triggered, polisher coarse matrix resolution set to $OPTARG." >&1
polisher_coarse_resolution=$OPTARG
else
echo ":( Wrong syntax for polisher coarse matrix resolution. Using the default value ${polisher_coarse_resolution}." >&2
fi
shift
;;
--polisher-coarse-region) OPTARG=$2
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]]; then
echo " --polisher-coarse-region flag was triggered, polisher coarse resolution depletion region size set to $OPTARG." >&1
polisher_coarse_region=$OPTARG
else
echo ":( Wrong syntax for polisher coarse resolution depletion region size. Using the default value ${polisher_coarse_region}." >&2
fi
shift
;;
--polisher-coarse-stringency) OPTARG=$2
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]] && [[ $OPTARG -gt 0 ]] && [[ $OPTARG -lt 100 ]]; then
echo " --polisher-coarse-stringency flag was triggered, polisher stringency parameter set to $OPTARG%." >&1
polisher_coarse_stringency=$OPTARG
else
echo ":( Wrong syntax for polisher stringency parameter. Using the default value ${polisher_coarse_stringency}%." >&2
fi
shift
;;
--polisher-fine-resolution) OPTARG=$2
re='^[0-9]+$' ## TODO: specify/generalize re matrix resolutions size
if [[ $OPTARG =~ $re ]]; then
echo " --polisher-fine-resolution flag was triggered, polisher fine matrix resolution set to $OPTARG." >&1
polisher_fine_resolution=$OPTARG
else
echo ":( Wrong syntax for polisher fine matrix resolution. Using the default value ${polisher_fine_resolution}." >&2
fi
shift
;;
# splitter
--splitter-input-size) OPTARG=$2 ##TODO: should get rid of this, don't think I really need it
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]]; then
echo " --splitter-input-size flag was triggered, excluding scaffolds smaller than $OPTARG when splitting." >&1
splitter_input_size=$OPTARG
else
echo ":( Wrong syntax for splitter scaffold input size threshold. Using the default value ${splitter_input_size}." >&2
fi
shift
;;
--splitter-saturation-centile) OPTARG=$2
re='^[0-9]+\.?[0-9]*$'
if [[ $OPTARG =~ $re ]] && [[ ${OPTARG%.*} -ge 0 ]] && ! [[ "$OPTARG" =~ ^0*(\.)?0*$ ]] && [[ $((${OPTARG%.*} + 1)) -le 100 ]]; then
echo " --splitter-saturation-centile flag was triggered, splitter saturation parameter set to ${OPTARG}%." >&1
splitter_saturation_centile=$OPTARG
else
echo ":( Wrong syntax for splitter saturation threshold. Using the default value ${splitter_saturation_centile}%." >&2
fi
shift
;;
--splitter-coarse-resolution) OPTARG=$2
re='^[0-9]+$' ## TODO: specify/generalize re matrix resolutions size
if [[ $OPTARG =~ $re ]]; then
echo " --splitter-coarse-resolution flag was triggered, splitter coarse matrix resolution set to $OPTARG." >&1
splitter_coarse_resolution=$OPTARG
else
echo ":( Wrong syntax for splitter coarse matrix resolution. Using the default value ${splitter_coarse_resolution}." >&2
fi
shift
;;
--splitter-coarse-region) OPTARG=$2
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]]; then
echo " --splitter-coarse-region flag was triggered, splitter coarse resolution depletion region size set to $OPTARG." >&1
splitter_coarse_region=$OPTARG
else
echo ":( Wrong syntax for splitter coarse resolution depletion region size. Using the default value ${splitter_coarse_region}." >&2
fi
shift
;;
--splitter-coarse-stringency) OPTARG=$2
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]] && [[ $OPTARG -gt 0 ]] && [[ $OPTARG -lt 100 ]]; then
echo " --splitter-coarse-stringency flag was triggered, splitter stringency parameter set to $OPTARG%." >&1
splitter_coarse_stringency=$OPTARG
else
echo ":( Wrong syntax for splitter stringency parameter. Using the default value ${splitter_coarse_stringency}%." >&2
fi
shift
;;
--splitter-fine-resolution) OPTARG=$2
re='^[0-9]+$' ## TODO: specify/generalize re matrix resolutions size
if [[ $OPTARG =~ $re ]]; then
echo " --splitter-fine-resolution flag was triggered, splitter fine matrix resolution set to $OPTARG." >&1
splitter_fine_resolution=$OPTARG
else
echo ":( Wrong syntax for splitter fine matrix resolution. Using the default value ${splitter_fine_resolution}." >&2
fi
shift
;;
# merger
--merger-search-band) OPTARG=$2
re='^[0-9]+$' ## TODO: specify/generalize re matrix resolutions size
if [[ $OPTARG =~ $re ]]; then
echo " --merger-search-band flag was triggered, merger will look for alternative haplotypes to input contigs and scaffolds within $OPTARG bases from their suggested location in the assembly." >&1
merger_search_band=$OPTARG
else
echo ":( Wrong syntax for alternative haplotype search region size. Exiting!" >&2
exit
fi
shift
;;
--merger-alignment-length) OPTARG=$2
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]]; then
echo " --merger-alignment-length flag was triggered, overlap length threshold for sequences to be recognized as alternative haplotypes is set to $OPTARG." >&1
merger_alignment_length=$OPTARG
else
echo ":( Wrong syntax for alternative haplotype search alignment length. Exiting!" >&2
exit 1
fi
shift
;;
--merger-alignment-identity) OPTARG=$2
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]]; then
echo " --merger-alignment-identity flag was triggered, lastz alignment identity threshold for sequences to be recognized as alternative haplotypes is set to $OPTARG." >&1
merger_alignment_identity=$OPTARG
else
echo ":( Wrong syntax for alternative haplotype search alignment identity. Exiting!" >&2
exit 1
fi
shift
;;
--merger-alignment-score) OPTARG=$2
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]]; then
echo " --merger-alignment-score flag was triggered, lastz alignment score threshold for sequences to be recognized as alternative haplotypes is set to $OPTARG." >&1
merger_alignment_score=$OPTARG
else
echo ":( Wrong syntax for alternative haplotype search alignment score. Exiting!" >&2
exit
fi
shift
;;
--merger-lastz-options) OPTARG=$2
re='^\"--.+\"$'
if [[ $OPTARG =~ $re ]]; then
echo " --merger-lastz-options flag was triggered, overlap length threshold for sequences to be recognized as alternative haplotypes is set to $OPTARG." >&1
merger_lastz_options="$OPTARG"
else
echo ":( Wrong syntax for alternative haplotype search lastz option string. Exiting!" >&2
exit 1
fi
shift
;;
# finalizer
-g|--gap-size) OPTARG=$2
re='^[0-9]+$'
if [[ $OPTARG =~ $re ]]; then
echo " -g|--gap-size flag was triggered, will add gaps of size $OPTARG between scaffolded sequences in the chromosome-length scaffolds." >&1
gap_size=$OPTARG
else
echo ":( Wrong syntax for gap size parameter value. Using the default value ${gap_size}." >&2
fi
shift
;;
# supplementary options:
-e|--early-exit)
echo " -e|--early-exit flag was triggered, will do early exit." >&1
early=true
;;
-f|--fast-start)
echo " -f|--fast-start flag was triggered, will start assuming first iterative round and map are available." >&1
fast=true
;;
--sort-output)
echo " --sort-output was triggered, will sort output scaffolds by size." >&1
sort_output=true
;;
--build-gapped-map)
echo " --build-gapped-map was triggered, will build an additional hic file corresponding to final assembly with gaps added between draft sequences." >&1
build_gapped_map=true
;;
# TODO: merger, sealer, etc options
--) # End of all options
shift
break
;;
-?*)
echo ":| WARNING: Unknown option. Ignoring: ${1}" >&2
;;
*) # Default case: If no more options then break out of the loop.
break
esac
shift
done
## check parameters for compatibility
[[ ${editor_coarse_region} -le ${editor_coarse_resolution} ]] && echo >&2 ":( Requested depletion region size ${editor_coarse_region} and bin size ${editor_coarse_resolution} parameters for editor are incompatible. Run ${pipeline}/edit/run-mismatch-detector.sh -h for instructions. Exiting!" && exit 1
[[ ${editor_coarse_resolution} -le ${editor_fine_resolution} ]] && echo >&2 ":( Requested mismatch localization resolution ${editor_fine_resolution} and coarse search bin size ${editor_coarse_resolution} parameters for editor are incompatible. Run ${pipeline}/edit/run-mismatch-detector.sh -h for instructions. Exiting!" && exit 1
[[ ${polisher_coarse_region} -le ${polisher_coarse_resolution} ]] && echo >&2 ":( Requested depletion region size ${polisher_coarse_region} and bin size ${polisher_coarse_resolution} parameters for polisher are incompatible. Run ${pipeline}/edit/run-mismatch-detector.sh -h for instructions. Exiting!" && exit 1
[[ ${polisher_coarse_resolution} -le ${polisher_fine_resolution} ]] && echo >&2 ":( Requested mismatch localization resolution ${polisher_fine_resolution} and coarse search bin size ${polisher_coarse_resolution} parameters for polisher are incompatible. Run ${pipeline}/edit/run-mismatch-detector.sh -h for instructions. Exiting!" && exit 1
[[ ${splitter_coarse_region} -le ${splitter_coarse_resolution} ]] && echo >&2 ":( Requested depletion region size ${splitter_coarse_region} and bin size ${splitter_coarse_resolution} parameters for splitter are incompatible. Run ${pipeline}/edit/run-mismatch-detector.sh -h for instructions. Exiting!" && exit 1
[[ ${splitter_coarse_resolution} -le ${splitter_fine_resolution} ]] && echo >&2 ":( Requested mismatch localization resolution ${splitter_fine_resolution} and coarse search bin size ${splitter_coarse_resolution} parameters for splitter are incompatible. Run ${pipeline}/edit/run-mismatch-detector.sh -h for instructions. Exiting!" && exit 1
([[ $diploid == "false" ]] && [[ ! -z ${merger_band_width} || ! -z ${merger_alignment_score} || ! -z ${merger_alignment_identity} || ! -z ${merger_alignment_length} || ! -z ${merger_lastz_options} || $stage == "merge" ]]) && echo >&2 ":( Some options were requested that are not compatible with default haploid mode. Please include --mode diploid in your option list or remove flag calls associated with the merge block of the pipeline. Exiting!" && exit 1
## set merger default parameters if missing any
if [[ $diploid == "true" ]]; then
[[ -z ${merger_search_band} ]] && merger_search_band=${default_merger_search_band}
[[ -z ${merger_alignment_score} ]] && merger_alignment_score=${default_merger_alignment_score}
[[ -z ${merger_alignment_identity} ]] && merger_alignment_identity=${default_merger_alignment_identity}
[[ -z ${merger_alignment_length} ]] && merger_alignment_length=${default_merger_alignment_length}
[[ -z ${merger_lastz_options} ]] && merger_lastz_options=${default_merger_lastz_options}
fi
############### HANDLE EXTERNAL DEPENDENCIES ###############
## GNU Parallel Dependency
parallel="false"
if hash parallel 2>/dev/null; then
ver=`parallel --version | awk 'NR==1{print \$3}'`
[ $ver -ge 20150322 ] && parallel="true"
fi
[ $parallel == "false" ] && echo ":| WARNING: GNU Parallel version 20150322 or later not installed. We highly recommend to install it to increase performance. Starting pipeline without parallelization!" >&2
## LASTZ dependency
lastz="false"
if hash lastz 2>/dev/null; then
lastz="true"
fi
[[ $lastz == "false" && $diploid == "true" ]] && echo >&2 ":( LASTZ not installed or not in the path while diploid mode is triggered. The merge section of the pipeline will not run. Exiting!" && exit 1
############### HANDLE ARGUMENTS ###############
[ -z $1 ] || [ -z $2 ] && echo >&2 "Not sure how to parse your input: files not listed or not found at expected locations. Exiting!" && echo >&2 "$USAGE_short" && exit 1
[ ! -s $1 ] || [ ! -s $2 ] && echo >&2 "Not sure how to parse your input: files not listed or not found at expected locations. Exiting!" && echo >&2 "$USAGE_short" && exit 1
## TODO: check file format
if [ "$#" -ne 2 ]; then
echo >&2 "Illegal number of arguments. Please double check your input. Exiting!" && echo >&2 "$USAGE_short" && exit 1
fi
orig_fasta=$1
orig_mnd=$2
genomeid=$(basename "$orig_fasta" .fasta)
genomeid=$(basename "$genomeid" .fna)
genomeid=$(basename "$genomeid" .fa)
if [ ${orig_mnd} != ${genomeid}.mnd.txt ]; then
if [ -f ${genomeid}.mnd.txt ]; then
cmp --silent ${orig_mnd} ${genomeid}.mnd.txt || { echo >&2 ":( Please remove or rename file ${genomeid}.mnd.txt. Exiting!" && exit 1; }
fi
ln -sf ${orig_mnd} ${genomeid}.mnd.txt
fi
orig_mnd=${genomeid}.mnd.txt
if [ "$stage" != "scaffold" ] && [ "$stage" != "polish" ] && [ "$stage" != "split" ] && [ "$stage" != "seal" ] && [ "$stage" != "merge" ] && [ "$stage" != "finalize" ] && [ "$fast" != "true" ]; then
awk -f ${pipeline}/utils/generate-sorted-cprops-file.awk ${orig_fasta} > ${genomeid}.cprops
fi
orig_cprops=${genomeid}.cprops
[ ! -f ${orig_cprops} ] && echo >&2 ":( No cprops file found. Please rerun the pipeline from scratch. Exiting!" && exit 1
## calculate zoom
# TODO: move this to mismatch detector, pass only scale
totlength=`awk '{total+=$3}END{print total}' ${orig_cprops}`
scale=$(( 1 + $totlength / 2100000000 ))
if [ $scale -ne 1 ]; then
editor_coarse_resolution=$((editor_coarse_resolution/scale))
editor_coarse_region=$((editor_coarse_region/scale))
editor_fine_resolution=$((editor_fine_resolution/scale))
polisher_coarse_resolution=$((polisher_coarse_resolution/scale))
polisher_coarse_region=$((polisher_coarse_region/scale))
polisher_fine_resolution=$((polisher_fine_resolution/scale))
splitter_coarse_resolution=$((splitter_coarse_resolution/scale))
splitter_coarse_region=$((splitter_coarse_region/scale))
splitter_fine_resolution=$((splitter_fine_resolution/scale))
fi
############### ITERATIVE SCAFFOLDING/MISJOIN CORRECTION ###############
if [ "$stage" != "polish" ] && [ "$stage" != "split" ] && [ "$stage" != "seal" ] && [ "$stage" != "merge" ] && [ "$stage" != "finalize" ]; then
ROUND=0
if ! [ "$fast" == "true" ]; then
if [ -f ${genomeid}.*.cprops ] || [ -f ${genomeid}.mnd.*.txt ] ; then
echo >&2 ":( Please remove or rename files ${genomeid}.*.cprops ${genomeid}.mnd.*.txt. Exiting!" && exit
else
ln -sf ${orig_cprops} ${genomeid}.${ROUND}.cprops
ln -sf ${orig_mnd} ${genomeid}.mnd.${ROUND}.txt
fi
else
[ ! -f ${genomeid}.0.cprops ] || [ ! -f ${genomeid}.0.asm ] || [ ! -f ${genomeid}.0.hic ] || [ ! -f ${genomeid}.mnd.0.txt ] || [ ! -f ${genomeid}.0_asm.scaffold_track.txt ] || [ ! -f ${genomeid}.0_asm.superscaf_track.txt ] && echo >&2 ":( No early exit files are found. Please rerun the pipeline to include the round 0 assembly. Exiting!" && exit 1
fi
current_cprops=${genomeid}.${ROUND}.cprops
current_mnd=${genomeid}.mnd.${ROUND}.txt
echo "###############" >&1
echo "Starting iterating scaffolding with editing:" >&1
# run liger
while true; do
{
if !([ "$fast" == "true" ] && [ ${ROUND} -eq 0 ] ); then
# scaffold
echo "...starting round ${ROUND} of scaffolding:" >&1
bash ${pipeline}/scaffold/run-liger-scaffolder.sh -p ${parallel} -s ${input_size} -q ${mapq} ${current_cprops} ${current_mnd}
# build a hic map of the resulting assembly
echo "...visualizing round ${ROUND} results:" >&1
bash ${pipeline}/visualize/run-asm-visualizer.sh -p ${parallel} -q ${mapq} -i -c ${current_cprops} ${genomeid}.${ROUND}.asm ${current_mnd}
# rm temp.${genomeid}.${ROUND}.asm_mnd.txt
rm ${current_mnd}
# early exit on round zero if requested
[ "$early" == "true" ] && exit 0
fi
# break out of the scaffold-mismatch detection loop if the max number of steps is reached
[ ${ROUND} -eq ${MAX_ROUNDS} ] && break
# annotate near-diagonal mismatches in the map
echo "...detecting misjoins in round ${ROUND} assembly:" >&1
bash ${pipeline}/edit/run-mismatch-detector.sh -p ${parallel} -c ${editor_saturation_centile} -w ${editor_coarse_resolution} -d ${editor_coarse_region} -k ${editor_coarse_stringency} -n ${editor_fine_resolution} ${genomeid}.${ROUND}.hic
# annotate repeats by coverage analysis
bash ${pipeline}/edit/run-coverage-analyzer.sh -w ${editor_coarse_resolution} -t ${editor_repeat_coverage} ${genomeid}.${ROUND}.hic
# store intermediate mismatch stuff - not necessary
mv depletion_score_wide.wig depletion_score_wide.at.step.${ROUND}.wig
mv depletion_score_narrow.wig depletion_score_narrow.at.step.${ROUND}.wig
mv mismatch_wide.bed mismatch_wide.at.step.${ROUND}.bed
mv mismatch_narrow.bed mismatch_narrow.at.step.${ROUND}.bed
# store intermediate repeat stuff - not necessary
mv coverage_wide.wig coverage_wide.at.step.${ROUND}.wig
mv repeats_wide.bed repeats_wide.at.step.${ROUND}.bed
# consolidate bed annotations
cat mismatch_narrow.at.step.${ROUND}.bed repeats_wide.at.step.${ROUND}.bed | sort -k 2,2n | awk 'BEGIN{FS="\t"; OFS="\t"}NR==1{start=$2; end=$3; next}$2<=end{if($3>end){end=$3}; next}{print "assembly", start, end; start=$2; end=$3}END{print "assembly", start, end}' > suspect.at.step.${ROUND}.bed
# convert bed track into 2D annotations
resolved=$(awk 'NR==2{print $3}' ${genomeid}.${ROUND}_asm.superscaf_track.txt) # scaled coordinates
#!!PROBLEM!!
awk -v bin_size=${editor_fine_resolution} -f ${pipeline}/edit/overlay-edits.awk ${genomeid}.${ROUND}_asm.scaffold_track.txt suspect.at.step.${ROUND}.bed | awk -v r=${resolved} 'NR==1||$3<=r' > suspect_2D.at.step.${ROUND}.txt
# separate intra and inter-input scaffold mismatches
awk 'NR==1||$8=="debris"' suspect_2D.at.step.${ROUND}.txt > edits.for.step.$((ROUND+1)).txt
# optional
awk 'NR==1||$8=="mismatch"' suspect_2D.at.step.${ROUND}.txt > mismatches.at.step.$ROUND.txt
test=`wc -l < edits.for.step.$((ROUND+1)).txt`
[ $test -eq 1 ] && echo >&1 ":) No more input edits to be done. Moving to polishing!" && rm edits.for.step.$((ROUND+1)).txt && break
# move on to the next step
ROUND=$((ROUND+1))
[ -f ${genomeid}".edits.txt" ] && cp ${genomeid}".edits.txt" "archive."${genomeid}".edits.at.step."$((ROUND-1))".txt" # not necessary
# reconstruct current edits
awk 'BEGIN{OFS="\t"; print "chr1", "x1", "x2", "chr2", "y1", "y2", "color", "id", "X1", "X2", "Y1", "Y2"}$1~/:::debris/{print $1, 0, $3, $1, 0, $3, "0,0,0", "debris", 0, $3, 0, $3}' ${current_cprops} | awk -f ${pipeline}/lift/lift-input-annotations-to-asm-annotations.awk ${current_cprops} <(awk '{print $2}' ${current_cprops}) - | awk -f ${pipeline}/lift/lift-asm-annotations-to-input-annotations.awk ${orig_cprops} <(awk '{print $2}' ${orig_cprops}) - > h.old.edits.txt
# add new edits
bash ${pipeline}/lift/lift-edit-asm-annotations-to-original-input-annotations.sh ${orig_cprops} ${current_cprops} ${genomeid}.$((ROUND-1)).asm edits.for.step.${ROUND}.txt > h.new.edits.txt
awk 'NR==1' "h.new.edits.txt" > temp
{ awk 'NR>1' h.old.edits.txt ; awk 'NR>1' "h.new.edits.txt" ; } | sort -k 1,1 -k 2,2n >> temp
mv temp ${genomeid}".edits.txt"
rm h.old.edits.txt h.new.edits.txt
# apply edits
bash ${pipeline}/edit/apply-edits-prep-for-next-round.sh -p ${parallel} -r ${ROUND} ${genomeid}".edits.txt" ${orig_cprops} ${orig_mnd}
current_cprops=${genomeid}.${ROUND}.cprops
current_mnd=${genomeid}.mnd.${ROUND}.txt
}
done
ln -sf ${genomeid}.${ROUND}.cprops ${genomeid}.resolved.cprops
ln -sf ${genomeid}.${ROUND}.asm ${genomeid}.resolved.asm
ln -sf ${genomeid}.${ROUND}_asm.scaffold_track.txt ${genomeid}.resolved_asm.scaffold_track.txt
ln -sf ${genomeid}.${ROUND}_asm.superscaf_track.txt ${genomeid}.resolved_asm.superscaf_track.txt
ln -sf ${genomeid}.${ROUND}.hic ${genomeid}.resolved.hic
#ln -sf ${genomeid}.mnd.${ROUND}.txt ${genomeid}.mnd.resolved.txt
fi
############### POLISHING ###############
if [ "$stage" != "split" ] && [ "$stage" != "seal" ] && [ "$stage" != "merge" ] && [ "$stage" != "finalize" ]; then
[ ! -f ${genomeid}.resolved.cprops ] || [ ! -f ${genomeid}.resolved.asm ] || [ ! -f ${genomeid}.resolved.hic ] && echo >&2 ":( No resolved files are found. Please rerun the pipeline to include the scaffold segment. Exiting!" && exit 1
echo "###############" >&1
echo "Starting polish:" >&1
bash ${pipeline}/polish/run-asm-polisher.sh -p ${parallel} -q ${mapq} -j ${genomeid}.resolved.hic -a ${genomeid}.resolved_asm.scaffold_track.txt -b ${genomeid}.resolved_asm.superscaf_track.txt -s ${polisher_input_size} -c ${polisher_saturation_centile} -w ${polisher_coarse_resolution} -d ${polisher_coarse_region} -k ${polisher_coarse_stringency} -n ${polisher_fine_resolution} ${genomeid}.cprops ${orig_mnd} ${genomeid}.resolved.cprops ${genomeid}.resolved.asm
mv ${genomeid}.resolved.polish.cprops ${genomeid}.polished.cprops
mv ${genomeid}.resolved.polish.asm ${genomeid}.polished.asm
mv ${genomeid}.resolved.polish.edits_2D.txt ${genomeid}.polished.edits_2D.txt
mv ${genomeid}.resolved.polish.mismatches_2D.txt ${genomeid}.polished.mismatches_2D.txt
mv ${genomeid}.resolved.polish.suspect_2D.txt ${genomeid}.polished.suspect_2D.txt
mv ${genomeid}.resolved.polish.mismatch_narrow.bed ${genomeid}.polished.mismatch_narrow.bed
mv ${genomeid}.resolved.polish.depletion_score_narrow.wig ${genomeid}.polished.depletion_score_narrow.wig
mv ${genomeid}.resolved.polish.mismatch_wide.bed ${genomeid}.polished.mismatch_wide.bed
mv ${genomeid}.resolved.polish.depletion_score_wide.wig ${genomeid}.polished.depletion_score_wide.wig
mv ${genomeid}.resolved.polish.hic ${genomeid}.polished.hic
mv ${genomeid}.resolved.polish_asm.superscaf_track.txt ${genomeid}.polished_asm.superscaf_track.txt
mv ${genomeid}.resolved.polish_asm.scaffold_track.txt ${genomeid}.polished_asm.scaffold_track.txt
fi
############### SPLITTING ###############
if [ "$stage" != "seal" ] && [ "$stage" != "merge" ] && [ "$stage" != "finalize" ]; then
[ ! -s ${genomeid}.polished.cprops ] || [ ! -s ${genomeid}.polished.asm ] && echo >&2 ":( No resolved files are found. Please rerun the pipeline to include the scaffold/scaffold+polish segment. Exiting!" && exit 1
# [ $chrom_num -ne 1 ] && bash ${pipeline}/split/run-asm-splitter.sh -c ${chrom_num} -r ${diploid} ${genomeid}.polished.cprops ${genomeid}.polished.asm ${genomeid}.mnd.polished.txt || cp ${genomeid}.polished.cprops ${genomeid}.polished.split.asm
echo "###############" >&1
echo "Starting split:" >&1
bash ${pipeline}/split/run-asm-splitter.sh -p ${parallel} -q ${mapq} -j ${genomeid}.polished.hic -a ${genomeid}.polished_asm.scaffold_track.txt -b ${genomeid}.polished_asm.superscaf_track.txt -s ${splitter_input_size} -c ${splitter_saturation_centile} -w ${splitter_coarse_resolution} -d ${splitter_coarse_region} -k ${splitter_coarse_stringency} -n ${splitter_fine_resolution} ${genomeid}.cprops ${orig_mnd} ${genomeid}.polished.cprops ${genomeid}.polished.asm
mv ${genomeid}.polished.split.cprops ${genomeid}.split.cprops
mv ${genomeid}.polished.split.asm ${genomeid}.split.asm
mv ${genomeid}.polished.split.hic ${genomeid}.split.hic
mv ${genomeid}.polished.split_asm.superscaf_track.txt ${genomeid}.split_asm.superscaf_track.txt
mv ${genomeid}.polished.split_asm.scaffold_track.txt ${genomeid}.split_asm.scaffold_track.txt
fi
############### SEALING ###############
if [ "$stage" != "merge" ] && [ "$stage" != "finalize" ]; then
[ ! -s ${genomeid}.split.cprops ] || [ ! -s ${genomeid}.split.asm ] && echo >&2 ":( No split files are found. Please rerun the pipeline to include the split segment. Exiting!" && exit 1
echo "###############" >&1
echo "Starting sealing:" >&1
# start slowly converting to .assembly as main input. If necessary split inside a particular block and cleanup after
cat <(awk '{$0=">"$0}1' ${genomeid}.split.cprops) ${genomeid}.split.asm > ${genomeid}.split.assembly
bash ${pipeline}/seal/run-assembly-sealer.sh -i ${input_size} ${genomeid}.split.assembly
mv ${genomeid}.split.sealed.assembly ${genomeid}.rawchrom.assembly
awk -f ${pipeline}/utils/convert-assembly-to-cprops-and-asm.awk ${genomeid}.rawchrom.assembly
# sort output by scaffold size if requested (except for unattempted which we keep in the end)
if [ "$sort_output" == "true" ]; then
awk -v input_size=${input_size} -f ${pipeline}/utils/sort-asm-by-size.awk ${genomeid}.rawchrom.cprops ${genomeid}.rawchrom.asm > ${genomeid}.rawchrom.asm.tmp && mv ${genomeid}.rawchrom.asm.tmp ${genomeid}.rawchrom.asm
fi
bash ${pipeline}/edit/edit-mnd-according-to-new-cprops.sh ${genomeid}.rawchrom.cprops ${orig_mnd} > ${genomeid}.rawchrom.mnd.txt
bash ${pipeline}/visualize/run-asm-visualizer.sh -p ${parallel} -q ${mapq} -i -c ${genomeid}.rawchrom.cprops ${genomeid}.rawchrom.asm ${genomeid}.rawchrom.mnd.txt
rm ${genomeid}.rawchrom.mnd.txt
# prep for merging and finalizing
awk -f ${pipeline}/edit/edit-fasta-according-to-new-cprops.awk ${genomeid}.rawchrom.cprops ${orig_fasta} > ${genomeid}.rawchrom.fasta
if [ $diploid == "false" ]; then
ln -sf ${genomeid}.rawchrom.cprops ${genomeid}.final.cprops
ln -sf ${genomeid}.rawchrom.asm ${genomeid}.final.asm
ln -sf ${genomeid}.rawchrom.fasta ${genomeid}.final.fasta
ln -sf ${genomeid}.rawchrom.hic ${genomeid}.final.hic
ln -sf ${genomeid}.rawchrom.assembly ${genomeid}.final.assembly
fi
fi
############### MERGING ###############
if [ "$stage" != "finalize" ] && [ $diploid == "true" ]; then
[ ! -s ${genomeid}.rawchrom.assembly ] || [ ! -s ${genomeid}.rawchrom.fasta ] && echo >&2 ":( No raw chromosomal files were found. Please rerun he pipeline to include the seal segment" && exit 1
echo "###############" >&1
echo "Starting merge:" >&1
[[ -f ${genomeid}.rawchrom.cprops || -f ${genomeid}.rawchrom.asm ]] || awk -f ${pipeline}/utils/convert-assembly-to-cprops-and-asm.awk ${genomeid}.rawchrom.assembly
## TODO: split unsafe, redo via indexing as in haploid case
if [ -d faSplit ]; then
echo >&2 ":| WARNING: Using existing faSplit folder for merge. Totally fine if you know what you are doing. If unsure delete the faSplit folder and restart pipeline."
else
echo "...preparing fasta..." >&1
mkdir faSplit && cd faSplit && awk -f ${pipeline}/merge/split-fasta-by-cname.awk ../${genomeid}.rawchrom.cprops ../${genomeid}.rawchrom.fasta && cd ..
fi
bash ${pipeline}/merge/run-asm-merger.sh -b ${merger_search_band} -s ${merger_alignment_score} -i ${merger_alignment_identity} -l ${merger_alignment_length} -o "${merger_lastz_options}" ${genomeid}.rawchrom.cprops ${genomeid}.rawchrom.asm faSplit
cp ${genomeid}.rawchrom/${genomeid}.rawchrom_merged.asm ${genomeid}.final.asm
ln -sf ${genomeid}.rawchrom/merged_${genomeid}.rawchrom.fa ${genomeid}.final.fasta
awk -f ${pipeline}/utils/generate-cprops-file.awk ${genomeid}.final.fasta > ${genomeid}.final.cprops
cat <(awk '{$0=">"$0}1' ${genomeid}.final.cprops) ${genomeid}.final.asm > ${genomeid}.final.assembly
# cleanup
rm -r faSplit
fi
############### FINALIZING ###############
# finalize fasta
echo "###############" >&1
echo "Finilizing output:" >&1
bash ${pipeline}/finalize/finalize-output.sh -s ${input_size} -l ${genomeid} -g ${gap_size} ${genomeid}.final.cprops ${genomeid}.final.asm ${genomeid}.final.fasta final
# if requested build HiC map with added gaps
if [ "$build_gapped_map" == "true" ]; then
awk -f ${pipeline}/utils/convert-assembly-to-cprops-and-asm.awk ${genomeid}.FINAL.assembly
bash ${pipeline}/edit/edit-mnd-according-to-new-cprops.sh ${genomeid}.FINAL.cprops ${orig_mnd} > ${genomeid}.FINAL.mnd.txt
bash ${pipeline}/visualize/run-assembly-visualizer.sh -p ${parallel} -q ${mapq} -i -c ${genomeid}.FINAL.assembly ${genomeid}.FINAL.mnd.txt
rm ${genomeid}.FINAL.mnd.txt ${genomeid}.FINAL.cprops ${genomeid}.FINAL.asm
fi