-
Notifications
You must be signed in to change notification settings - Fork 886
Expand file tree
/
Copy pathparabricks_default.nf.test.snap
More file actions
1460 lines (1458 loc) · 101 KB
/
Copy pathparabricks_default.nf.test.snap
File metadata and controls
1460 lines (1458 loc) · 101 KB
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
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Params: parabricks star_salmon (no markdups)": {
"content": [
89,
{
"BBMAP_BBSPLIT": {
"bbmap": 39.18
},
"CAT_FASTQ": {
"cat": 9.5
},
"CUSTOM_CATADDITIONALFASTA": {
"python": "3.12.2"
},
"CUSTOM_GTFFILTER": {
"python": "3.9.5"
},
"CUSTOM_TX2GENE": {
"python": "3.10.4"
},
"DESEQ2_QC_BAM_SALMON": {
"bioconductor-deseq2": "1.46.0",
"r-base": "4.4.2"
},
"EAUTILS_GTF2BED": {
"perl": "5.26.2"
},
"FASTQC": {
"fastqc": "0.12.1"
},
"FASTQC_FILTERED": {
"fastqc": "0.12.1"
},
"FQ_LINT": {
"fq": "0.12.0"
},
"FQ_LINT_AFTER_BBSPLIT": {
"fq": "0.12.0"
},
"FQ_LINT_AFTER_TRIMMING": {
"fq": "0.12.0"
},
"FQ_SUBSAMPLE": {
"fq": "0.12.0"
},
"GUNZIP_ADDITIONAL_FASTA": {
"gunzip": 1.13
},
"GUNZIP_GTF": {
"gunzip": 1.13
},
"PARABRICKS_RNA_FQ2BAM": {
"parabricks": "4.7.1-1"
},
"PARABRICKS_STARGENOMEGENERATE": {
"gawk": "5.1.0",
"samtools": 1.21,
"star": "2.7.2a"
},
"SALMON_QUANT": {
"salmon": "1.10.3"
},
"SAMTOOLS_FAIDX": {
"samtools": "1.23.1"
},
"SAMTOOLS_FLAGSTAT": {
"samtools": "1.23.1"
},
"SAMTOOLS_IDXSTATS": {
"samtools": "1.23.1"
},
"SAMTOOLS_INDEX": {
"samtools": "1.23.1"
},
"SAMTOOLS_SORT": {
"samtools": "1.23.1"
},
"SAMTOOLS_STATS": {
"samtools": "1.23.1"
},
"SE_GENE_UNIFIED": {
"bioconductor-summarizedexperiment": "1.32.0"
},
"SE_TRANSCRIPT_UNIFIED": {
"bioconductor-summarizedexperiment": "1.32.0"
},
"TRIMGALORE": {
"trimgalore": "2.3.0"
},
"TXIMETA_TXIMPORT": {
"bioconductor-tximeta": "1.20.1"
},
"UNTAR_SALMON_INDEX": {
"untar": 1.34
}
},
[
"bbsplit",
"bbsplit/RAP1_IAA_30M_REP1.stats.txt",
"bbsplit/RAP1_UNINDUCED_REP1.stats.txt",
"bbsplit/RAP1_UNINDUCED_REP2.stats.txt",
"bbsplit/WT_REP1.stats.txt",
"bbsplit/WT_REP2.stats.txt",
"fastqc",
"fastqc/filtered",
"fastqc/filtered/RAP1_IAA_30M_REP1_filtered_1_fastqc.html",
"fastqc/filtered/RAP1_IAA_30M_REP1_filtered_1_fastqc.zip",
"fastqc/filtered/RAP1_IAA_30M_REP1_filtered_2_fastqc.html",
"fastqc/filtered/RAP1_IAA_30M_REP1_filtered_2_fastqc.zip",
"fastqc/filtered/RAP1_UNINDUCED_REP1_filtered_fastqc.html",
"fastqc/filtered/RAP1_UNINDUCED_REP1_filtered_fastqc.zip",
"fastqc/filtered/RAP1_UNINDUCED_REP2_filtered_fastqc.html",
"fastqc/filtered/RAP1_UNINDUCED_REP2_filtered_fastqc.zip",
"fastqc/filtered/WT_REP1_filtered_1_fastqc.html",
"fastqc/filtered/WT_REP1_filtered_1_fastqc.zip",
"fastqc/filtered/WT_REP1_filtered_2_fastqc.html",
"fastqc/filtered/WT_REP1_filtered_2_fastqc.zip",
"fastqc/filtered/WT_REP2_filtered_1_fastqc.html",
"fastqc/filtered/WT_REP2_filtered_1_fastqc.zip",
"fastqc/filtered/WT_REP2_filtered_2_fastqc.html",
"fastqc/filtered/WT_REP2_filtered_2_fastqc.zip",
"fastqc/raw",
"fastqc/raw/RAP1_IAA_30M_REP1_raw_1_fastqc.html",
"fastqc/raw/RAP1_IAA_30M_REP1_raw_1_fastqc.zip",
"fastqc/raw/RAP1_IAA_30M_REP1_raw_2_fastqc.html",
"fastqc/raw/RAP1_IAA_30M_REP1_raw_2_fastqc.zip",
"fastqc/raw/RAP1_UNINDUCED_REP1_raw_fastqc.html",
"fastqc/raw/RAP1_UNINDUCED_REP1_raw_fastqc.zip",
"fastqc/raw/RAP1_UNINDUCED_REP2_raw_fastqc.html",
"fastqc/raw/RAP1_UNINDUCED_REP2_raw_fastqc.zip",
"fastqc/raw/WT_REP1_raw_1_fastqc.html",
"fastqc/raw/WT_REP1_raw_1_fastqc.zip",
"fastqc/raw/WT_REP1_raw_2_fastqc.html",
"fastqc/raw/WT_REP1_raw_2_fastqc.zip",
"fastqc/raw/WT_REP2_raw_1_fastqc.html",
"fastqc/raw/WT_REP2_raw_1_fastqc.zip",
"fastqc/raw/WT_REP2_raw_2_fastqc.html",
"fastqc/raw/WT_REP2_raw_2_fastqc.zip",
"fastqc/trim",
"fastqc/trim/RAP1_IAA_30M_REP1_trimmed_1_val_1_fastqc.html",
"fastqc/trim/RAP1_IAA_30M_REP1_trimmed_1_val_1_fastqc.zip",
"fastqc/trim/RAP1_IAA_30M_REP1_trimmed_2_val_2_fastqc.html",
"fastqc/trim/RAP1_IAA_30M_REP1_trimmed_2_val_2_fastqc.zip",
"fastqc/trim/RAP1_UNINDUCED_REP1_trimmed_trimmed_fastqc.html",
"fastqc/trim/RAP1_UNINDUCED_REP1_trimmed_trimmed_fastqc.zip",
"fastqc/trim/RAP1_UNINDUCED_REP2_trimmed_trimmed_fastqc.html",
"fastqc/trim/RAP1_UNINDUCED_REP2_trimmed_trimmed_fastqc.zip",
"fastqc/trim/WT_REP1_trimmed_1_val_1_fastqc.html",
"fastqc/trim/WT_REP1_trimmed_1_val_1_fastqc.zip",
"fastqc/trim/WT_REP1_trimmed_2_val_2_fastqc.html",
"fastqc/trim/WT_REP1_trimmed_2_val_2_fastqc.zip",
"fastqc/trim/WT_REP2_trimmed_1_val_1_fastqc.html",
"fastqc/trim/WT_REP2_trimmed_1_val_1_fastqc.zip",
"fastqc/trim/WT_REP2_trimmed_2_val_2_fastqc.html",
"fastqc/trim/WT_REP2_trimmed_2_val_2_fastqc.zip",
"fq_lint",
"fq_lint/bbsplit",
"fq_lint/bbsplit/RAP1_IAA_30M_REP1.fq_lint.txt",
"fq_lint/bbsplit/RAP1_UNINDUCED_REP1.fq_lint.txt",
"fq_lint/bbsplit/RAP1_UNINDUCED_REP2.fq_lint.txt",
"fq_lint/bbsplit/WT_REP1.fq_lint.txt",
"fq_lint/bbsplit/WT_REP2.fq_lint.txt",
"fq_lint/raw",
"fq_lint/raw/RAP1_IAA_30M_REP1.fq_lint.txt",
"fq_lint/raw/RAP1_UNINDUCED_REP1.fq_lint.txt",
"fq_lint/raw/RAP1_UNINDUCED_REP2.fq_lint.txt",
"fq_lint/raw/WT_REP1.fq_lint.txt",
"fq_lint/raw/WT_REP2.fq_lint.txt",
"fq_lint/trimmed",
"fq_lint/trimmed/RAP1_IAA_30M_REP1.fq_lint.txt",
"fq_lint/trimmed/RAP1_UNINDUCED_REP1.fq_lint.txt",
"fq_lint/trimmed/RAP1_UNINDUCED_REP2.fq_lint.txt",
"fq_lint/trimmed/WT_REP1.fq_lint.txt",
"fq_lint/trimmed/WT_REP2.fq_lint.txt",
"multiqc",
"multiqc/star_salmon",
"multiqc/star_salmon/multiqc_report.html",
"multiqc/star_salmon/multiqc_report_data",
"multiqc/star_salmon/multiqc_report_data/bbmap-bbsplit_plot.txt",
"multiqc/star_salmon/multiqc_report_data/bbmap.txt",
"multiqc/star_salmon/multiqc_report_data/bbsplit_stats_table.txt",
"multiqc/star_salmon/multiqc_report_data/cutadapt_filtered_reads_plot.txt",
"multiqc/star_salmon/multiqc_report_data/cutadapt_trimmed_sequences_plot_3_Counts.txt",
"multiqc/star_salmon/multiqc_report_data/cutadapt_trimmed_sequences_plot_3_Obs_Exp.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_filtered-status-check-heatmap.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_filtered_overrepresented_sequences_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_filtered_per_base_n_content_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_filtered_per_base_sequence_quality_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_filtered_per_sequence_gc_content_plot_Counts.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_filtered_per_sequence_gc_content_plot_Percentages.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_filtered_per_sequence_quality_scores_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_filtered_sequence_counts_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_filtered_sequence_duplication_levels_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_filtered_top_overrepresented_sequences_table.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_raw-status-check-heatmap.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_raw_adapter_content_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_raw_overrepresented_sequences_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_raw_per_base_n_content_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_raw_per_base_sequence_quality_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_raw_per_sequence_gc_content_plot_Counts.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_raw_per_sequence_gc_content_plot_Percentages.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_raw_per_sequence_quality_scores_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_raw_sequence_counts_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_raw_sequence_duplication_levels_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_raw_top_overrepresented_sequences_table.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_sequence_length_distribution_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_trimmed-status-check-heatmap.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_trimmed_overrepresented_sequences_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_trimmed_per_base_n_content_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_trimmed_per_base_sequence_quality_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_trimmed_per_sequence_gc_content_plot_Counts.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_trimmed_per_sequence_gc_content_plot_Percentages.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_trimmed_per_sequence_quality_scores_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_trimmed_sequence_counts_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_trimmed_sequence_duplication_levels_plot.txt",
"multiqc/star_salmon/multiqc_report_data/fastqc_trimmed_top_overrepresented_sequences_table.txt",
"multiqc/star_salmon/multiqc_report_data/llms-full.txt",
"multiqc/star_salmon/multiqc_report_data/multiqc.log",
"multiqc/star_salmon/multiqc_report_data/multiqc.parquet",
"multiqc/star_salmon/multiqc_report_data/multiqc_citations.txt",
"multiqc/star_salmon/multiqc_report_data/multiqc_cutadapt.txt",
"multiqc/star_salmon/multiqc_report_data/multiqc_data.json",
"multiqc/star_salmon/multiqc_report_data/multiqc_fail_mapped_samples_table.txt",
"multiqc/star_salmon/multiqc_report_data/multiqc_fastqc_fastqc_filtered.txt",
"multiqc/star_salmon/multiqc_report_data/multiqc_fastqc_fastqc_raw.txt",
"multiqc/star_salmon/multiqc_report_data/multiqc_fastqc_fastqc_trimmed.txt",
"multiqc/star_salmon/multiqc_report_data/multiqc_general_stats.txt",
"multiqc/star_salmon/multiqc_report_data/multiqc_samtools_flagstat.txt",
"multiqc/star_salmon/multiqc_report_data/multiqc_samtools_idxstats.txt",
"multiqc/star_salmon/multiqc_report_data/multiqc_samtools_stats.txt",
"multiqc/star_salmon/multiqc_report_data/multiqc_software_versions.txt",
"multiqc/star_salmon/multiqc_report_data/multiqc_sources.txt",
"multiqc/star_salmon/multiqc_report_data/multiqc_star_salmon_deseq2_clustering.txt",
"multiqc/star_salmon/multiqc_report_data/multiqc_star_salmon_deseq2_pca.txt",
"multiqc/star_salmon/multiqc_report_data/samtools-flagstat-pct-table.txt",
"multiqc/star_salmon/multiqc_report_data/samtools-flagstat-table.txt",
"multiqc/star_salmon/multiqc_report_data/samtools-idxstats-mapped-reads-plot_Normalised_Counts.txt",
"multiqc/star_salmon/multiqc_report_data/samtools-idxstats-mapped-reads-plot_Observed_over_Expected_Counts.txt",
"multiqc/star_salmon/multiqc_report_data/samtools-idxstats-mapped-reads-plot_Raw_Counts.txt",
"multiqc/star_salmon/multiqc_report_data/samtools-stats-dp.txt",
"multiqc/star_salmon/multiqc_report_data/samtools_alignment_plot.txt",
"multiqc/star_salmon/multiqc_report_plots",
"multiqc/star_salmon/multiqc_report_plots/pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/bbmap-bbsplit_plot-cnt.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/bbmap-bbsplit_plot-pct.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/bbsplit_stats_table.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/cutadapt_filtered_reads_plot-cnt.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/cutadapt_filtered_reads_plot-pct.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/cutadapt_trimmed_sequences_plot_3_Counts.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/cutadapt_trimmed_sequences_plot_3_Obs_Exp.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fail_mapped_samples_table.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_filtered-status-check-heatmap.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_filtered_overrepresented_sequences_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_filtered_per_base_n_content_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_filtered_per_base_sequence_quality_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_filtered_per_sequence_gc_content_plot_Counts.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_filtered_per_sequence_gc_content_plot_Percentages.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_filtered_per_sequence_quality_scores_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_filtered_sequence_counts_plot-cnt.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_filtered_sequence_counts_plot-pct.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_filtered_sequence_duplication_levels_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_filtered_top_overrepresented_sequences_table.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_raw-status-check-heatmap.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_raw_adapter_content_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_raw_overrepresented_sequences_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_raw_per_base_n_content_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_raw_per_base_sequence_quality_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_raw_per_sequence_gc_content_plot_Counts.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_raw_per_sequence_gc_content_plot_Percentages.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_raw_per_sequence_quality_scores_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_raw_sequence_counts_plot-cnt.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_raw_sequence_counts_plot-pct.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_raw_sequence_duplication_levels_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_raw_top_overrepresented_sequences_table.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_sequence_length_distribution_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_trimmed-status-check-heatmap.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_trimmed_overrepresented_sequences_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_trimmed_per_base_n_content_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_trimmed_per_base_sequence_quality_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_trimmed_per_sequence_gc_content_plot_Counts.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_trimmed_per_sequence_gc_content_plot_Percentages.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_trimmed_per_sequence_quality_scores_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_trimmed_sequence_counts_plot-cnt.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_trimmed_sequence_counts_plot-pct.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_trimmed_sequence_duplication_levels_plot.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/fastqc_trimmed_top_overrepresented_sequences_table.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/samtools-flagstat-pct-table.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/samtools-flagstat-table.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/samtools-idxstats-mapped-reads-plot_Normalised_Counts-log.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/samtools-idxstats-mapped-reads-plot_Observed_over_Expected_Counts-cnt.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/samtools-idxstats-mapped-reads-plot_Observed_over_Expected_Counts-log.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/samtools-idxstats-mapped-reads-plot_Raw_Counts-cnt.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/samtools-idxstats-mapped-reads-plot_Raw_Counts-log.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/samtools-stats-dp.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/samtools_alignment_plot-cnt.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/samtools_alignment_plot-pct.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/star_salmon_deseq2_clustering.pdf",
"multiqc/star_salmon/multiqc_report_plots/pdf/star_salmon_deseq2_pca.pdf",
"multiqc/star_salmon/multiqc_report_plots/png",
"multiqc/star_salmon/multiqc_report_plots/png/bbmap-bbsplit_plot-cnt.png",
"multiqc/star_salmon/multiqc_report_plots/png/bbmap-bbsplit_plot-pct.png",
"multiqc/star_salmon/multiqc_report_plots/png/bbsplit_stats_table.png",
"multiqc/star_salmon/multiqc_report_plots/png/cutadapt_filtered_reads_plot-cnt.png",
"multiqc/star_salmon/multiqc_report_plots/png/cutadapt_filtered_reads_plot-pct.png",
"multiqc/star_salmon/multiqc_report_plots/png/cutadapt_trimmed_sequences_plot_3_Counts.png",
"multiqc/star_salmon/multiqc_report_plots/png/cutadapt_trimmed_sequences_plot_3_Obs_Exp.png",
"multiqc/star_salmon/multiqc_report_plots/png/fail_mapped_samples_table.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_filtered-status-check-heatmap.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_filtered_overrepresented_sequences_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_filtered_per_base_n_content_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_filtered_per_base_sequence_quality_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_filtered_per_sequence_gc_content_plot_Counts.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_filtered_per_sequence_gc_content_plot_Percentages.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_filtered_per_sequence_quality_scores_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_filtered_sequence_counts_plot-cnt.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_filtered_sequence_counts_plot-pct.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_filtered_sequence_duplication_levels_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_filtered_top_overrepresented_sequences_table.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_raw-status-check-heatmap.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_raw_adapter_content_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_raw_overrepresented_sequences_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_raw_per_base_n_content_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_raw_per_base_sequence_quality_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_raw_per_sequence_gc_content_plot_Counts.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_raw_per_sequence_gc_content_plot_Percentages.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_raw_per_sequence_quality_scores_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_raw_sequence_counts_plot-cnt.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_raw_sequence_counts_plot-pct.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_raw_sequence_duplication_levels_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_raw_top_overrepresented_sequences_table.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_sequence_length_distribution_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_trimmed-status-check-heatmap.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_trimmed_overrepresented_sequences_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_trimmed_per_base_n_content_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_trimmed_per_base_sequence_quality_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_trimmed_per_sequence_gc_content_plot_Counts.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_trimmed_per_sequence_gc_content_plot_Percentages.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_trimmed_per_sequence_quality_scores_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_trimmed_sequence_counts_plot-cnt.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_trimmed_sequence_counts_plot-pct.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_trimmed_sequence_duplication_levels_plot.png",
"multiqc/star_salmon/multiqc_report_plots/png/fastqc_trimmed_top_overrepresented_sequences_table.png",
"multiqc/star_salmon/multiqc_report_plots/png/samtools-flagstat-pct-table.png",
"multiqc/star_salmon/multiqc_report_plots/png/samtools-flagstat-table.png",
"multiqc/star_salmon/multiqc_report_plots/png/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.png",
"multiqc/star_salmon/multiqc_report_plots/png/samtools-idxstats-mapped-reads-plot_Normalised_Counts-log.png",
"multiqc/star_salmon/multiqc_report_plots/png/samtools-idxstats-mapped-reads-plot_Observed_over_Expected_Counts-cnt.png",
"multiqc/star_salmon/multiqc_report_plots/png/samtools-idxstats-mapped-reads-plot_Observed_over_Expected_Counts-log.png",
"multiqc/star_salmon/multiqc_report_plots/png/samtools-idxstats-mapped-reads-plot_Raw_Counts-cnt.png",
"multiqc/star_salmon/multiqc_report_plots/png/samtools-idxstats-mapped-reads-plot_Raw_Counts-log.png",
"multiqc/star_salmon/multiqc_report_plots/png/samtools-stats-dp.png",
"multiqc/star_salmon/multiqc_report_plots/png/samtools_alignment_plot-cnt.png",
"multiqc/star_salmon/multiqc_report_plots/png/samtools_alignment_plot-pct.png",
"multiqc/star_salmon/multiqc_report_plots/png/star_salmon_deseq2_clustering.png",
"multiqc/star_salmon/multiqc_report_plots/png/star_salmon_deseq2_pca.png",
"multiqc/star_salmon/multiqc_report_plots/svg",
"multiqc/star_salmon/multiqc_report_plots/svg/bbmap-bbsplit_plot-cnt.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/bbmap-bbsplit_plot-pct.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/bbsplit_stats_table.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/cutadapt_filtered_reads_plot-cnt.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/cutadapt_filtered_reads_plot-pct.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/cutadapt_trimmed_sequences_plot_3_Counts.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/cutadapt_trimmed_sequences_plot_3_Obs_Exp.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fail_mapped_samples_table.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_filtered-status-check-heatmap.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_filtered_overrepresented_sequences_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_filtered_per_base_n_content_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_filtered_per_base_sequence_quality_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_filtered_per_sequence_gc_content_plot_Counts.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_filtered_per_sequence_gc_content_plot_Percentages.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_filtered_per_sequence_quality_scores_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_filtered_sequence_counts_plot-cnt.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_filtered_sequence_counts_plot-pct.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_filtered_sequence_duplication_levels_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_filtered_top_overrepresented_sequences_table.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_raw-status-check-heatmap.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_raw_adapter_content_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_raw_overrepresented_sequences_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_raw_per_base_n_content_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_raw_per_base_sequence_quality_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_raw_per_sequence_gc_content_plot_Counts.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_raw_per_sequence_gc_content_plot_Percentages.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_raw_per_sequence_quality_scores_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_raw_sequence_counts_plot-cnt.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_raw_sequence_counts_plot-pct.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_raw_sequence_duplication_levels_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_raw_top_overrepresented_sequences_table.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_sequence_length_distribution_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_trimmed-status-check-heatmap.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_trimmed_overrepresented_sequences_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_trimmed_per_base_n_content_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_trimmed_per_base_sequence_quality_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_trimmed_per_sequence_gc_content_plot_Counts.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_trimmed_per_sequence_gc_content_plot_Percentages.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_trimmed_per_sequence_quality_scores_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_trimmed_sequence_counts_plot-cnt.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_trimmed_sequence_counts_plot-pct.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_trimmed_sequence_duplication_levels_plot.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/fastqc_trimmed_top_overrepresented_sequences_table.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/samtools-flagstat-pct-table.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/samtools-flagstat-table.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/samtools-idxstats-mapped-reads-plot_Normalised_Counts-cnt.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/samtools-idxstats-mapped-reads-plot_Normalised_Counts-log.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/samtools-idxstats-mapped-reads-plot_Observed_over_Expected_Counts-cnt.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/samtools-idxstats-mapped-reads-plot_Observed_over_Expected_Counts-log.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/samtools-idxstats-mapped-reads-plot_Raw_Counts-cnt.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/samtools-idxstats-mapped-reads-plot_Raw_Counts-log.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/samtools-stats-dp.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/samtools_alignment_plot-cnt.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/samtools_alignment_plot-pct.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/star_salmon_deseq2_clustering.svg",
"multiqc/star_salmon/multiqc_report_plots/svg/star_salmon_deseq2_pca.svg",
"pipeline_info",
"pipeline_info/nf_core_rnaseq_software_mqc_versions.yml",
"star_salmon",
"star_salmon/RAP1_IAA_30M_REP1",
"star_salmon/RAP1_IAA_30M_REP1.sorted.bam",
"star_salmon/RAP1_IAA_30M_REP1.sorted.bam.bai",
"star_salmon/RAP1_IAA_30M_REP1/aux_info",
"star_salmon/RAP1_IAA_30M_REP1/aux_info/ambig_info.tsv",
"star_salmon/RAP1_IAA_30M_REP1/aux_info/expected_bias.gz",
"star_salmon/RAP1_IAA_30M_REP1/aux_info/fld.gz",
"star_salmon/RAP1_IAA_30M_REP1/aux_info/meta_info.json",
"star_salmon/RAP1_IAA_30M_REP1/aux_info/observed_bias.gz",
"star_salmon/RAP1_IAA_30M_REP1/aux_info/observed_bias_3p.gz",
"star_salmon/RAP1_IAA_30M_REP1/cmd_info.json",
"star_salmon/RAP1_IAA_30M_REP1/libParams",
"star_salmon/RAP1_IAA_30M_REP1/libParams/flenDist.txt",
"star_salmon/RAP1_IAA_30M_REP1/logs",
"star_salmon/RAP1_IAA_30M_REP1/logs/salmon_quant.log",
"star_salmon/RAP1_IAA_30M_REP1/quant.genes.sf",
"star_salmon/RAP1_IAA_30M_REP1/quant.sf",
"star_salmon/RAP1_UNINDUCED_REP1",
"star_salmon/RAP1_UNINDUCED_REP1.sorted.bam",
"star_salmon/RAP1_UNINDUCED_REP1.sorted.bam.bai",
"star_salmon/RAP1_UNINDUCED_REP1/aux_info",
"star_salmon/RAP1_UNINDUCED_REP1/aux_info/ambig_info.tsv",
"star_salmon/RAP1_UNINDUCED_REP1/aux_info/expected_bias.gz",
"star_salmon/RAP1_UNINDUCED_REP1/aux_info/fld.gz",
"star_salmon/RAP1_UNINDUCED_REP1/aux_info/meta_info.json",
"star_salmon/RAP1_UNINDUCED_REP1/aux_info/observed_bias.gz",
"star_salmon/RAP1_UNINDUCED_REP1/aux_info/observed_bias_3p.gz",
"star_salmon/RAP1_UNINDUCED_REP1/cmd_info.json",
"star_salmon/RAP1_UNINDUCED_REP1/libParams",
"star_salmon/RAP1_UNINDUCED_REP1/libParams/flenDist.txt",
"star_salmon/RAP1_UNINDUCED_REP1/logs",
"star_salmon/RAP1_UNINDUCED_REP1/logs/salmon_quant.log",
"star_salmon/RAP1_UNINDUCED_REP1/quant.genes.sf",
"star_salmon/RAP1_UNINDUCED_REP1/quant.sf",
"star_salmon/RAP1_UNINDUCED_REP2",
"star_salmon/RAP1_UNINDUCED_REP2.sorted.bam",
"star_salmon/RAP1_UNINDUCED_REP2.sorted.bam.bai",
"star_salmon/RAP1_UNINDUCED_REP2/aux_info",
"star_salmon/RAP1_UNINDUCED_REP2/aux_info/ambig_info.tsv",
"star_salmon/RAP1_UNINDUCED_REP2/aux_info/expected_bias.gz",
"star_salmon/RAP1_UNINDUCED_REP2/aux_info/fld.gz",
"star_salmon/RAP1_UNINDUCED_REP2/aux_info/meta_info.json",
"star_salmon/RAP1_UNINDUCED_REP2/aux_info/observed_bias.gz",
"star_salmon/RAP1_UNINDUCED_REP2/aux_info/observed_bias_3p.gz",
"star_salmon/RAP1_UNINDUCED_REP2/cmd_info.json",
"star_salmon/RAP1_UNINDUCED_REP2/libParams",
"star_salmon/RAP1_UNINDUCED_REP2/libParams/flenDist.txt",
"star_salmon/RAP1_UNINDUCED_REP2/logs",
"star_salmon/RAP1_UNINDUCED_REP2/logs/salmon_quant.log",
"star_salmon/RAP1_UNINDUCED_REP2/quant.genes.sf",
"star_salmon/RAP1_UNINDUCED_REP2/quant.sf",
"star_salmon/WT_REP1",
"star_salmon/WT_REP1.sorted.bam",
"star_salmon/WT_REP1.sorted.bam.bai",
"star_salmon/WT_REP1/aux_info",
"star_salmon/WT_REP1/aux_info/ambig_info.tsv",
"star_salmon/WT_REP1/aux_info/expected_bias.gz",
"star_salmon/WT_REP1/aux_info/fld.gz",
"star_salmon/WT_REP1/aux_info/meta_info.json",
"star_salmon/WT_REP1/aux_info/observed_bias.gz",
"star_salmon/WT_REP1/aux_info/observed_bias_3p.gz",
"star_salmon/WT_REP1/cmd_info.json",
"star_salmon/WT_REP1/libParams",
"star_salmon/WT_REP1/libParams/flenDist.txt",
"star_salmon/WT_REP1/logs",
"star_salmon/WT_REP1/logs/salmon_quant.log",
"star_salmon/WT_REP1/quant.genes.sf",
"star_salmon/WT_REP1/quant.sf",
"star_salmon/WT_REP2",
"star_salmon/WT_REP2.sorted.bam",
"star_salmon/WT_REP2.sorted.bam.bai",
"star_salmon/WT_REP2/aux_info",
"star_salmon/WT_REP2/aux_info/ambig_info.tsv",
"star_salmon/WT_REP2/aux_info/expected_bias.gz",
"star_salmon/WT_REP2/aux_info/fld.gz",
"star_salmon/WT_REP2/aux_info/meta_info.json",
"star_salmon/WT_REP2/aux_info/observed_bias.gz",
"star_salmon/WT_REP2/aux_info/observed_bias_3p.gz",
"star_salmon/WT_REP2/cmd_info.json",
"star_salmon/WT_REP2/libParams",
"star_salmon/WT_REP2/libParams/flenDist.txt",
"star_salmon/WT_REP2/logs",
"star_salmon/WT_REP2/logs/salmon_quant.log",
"star_salmon/WT_REP2/quant.genes.sf",
"star_salmon/WT_REP2/quant.sf",
"star_salmon/deseq2_qc",
"star_salmon/deseq2_qc/R_sessionInfo.log",
"star_salmon/deseq2_qc/deseq2.dds.RData",
"star_salmon/deseq2_qc/deseq2.pca.vals.txt",
"star_salmon/deseq2_qc/deseq2.plots.pdf",
"star_salmon/deseq2_qc/deseq2.sample.dists.txt",
"star_salmon/deseq2_qc/size_factors",
"star_salmon/deseq2_qc/size_factors/RAP1_IAA_30M_REP1.txt",
"star_salmon/deseq2_qc/size_factors/RAP1_UNINDUCED_REP1.txt",
"star_salmon/deseq2_qc/size_factors/RAP1_UNINDUCED_REP2.txt",
"star_salmon/deseq2_qc/size_factors/WT_REP1.txt",
"star_salmon/deseq2_qc/size_factors/WT_REP2.txt",
"star_salmon/deseq2_qc/size_factors/deseq2.size_factors.RData",
"star_salmon/log",
"star_salmon/log/RAP1_IAA_30M_REP1.Log.final.out",
"star_salmon/log/RAP1_IAA_30M_REP1.Log.out",
"star_salmon/log/RAP1_IAA_30M_REP1.Log.progress.out",
"star_salmon/log/RAP1_IAA_30M_REP1.SJ.out.tab",
"star_salmon/log/RAP1_UNINDUCED_REP1.Log.final.out",
"star_salmon/log/RAP1_UNINDUCED_REP1.Log.out",
"star_salmon/log/RAP1_UNINDUCED_REP1.Log.progress.out",
"star_salmon/log/RAP1_UNINDUCED_REP1.SJ.out.tab",
"star_salmon/log/RAP1_UNINDUCED_REP2.Log.final.out",
"star_salmon/log/RAP1_UNINDUCED_REP2.Log.out",
"star_salmon/log/RAP1_UNINDUCED_REP2.Log.progress.out",
"star_salmon/log/RAP1_UNINDUCED_REP2.SJ.out.tab",
"star_salmon/log/WT_REP1.Log.final.out",
"star_salmon/log/WT_REP1.Log.out",
"star_salmon/log/WT_REP1.Log.progress.out",
"star_salmon/log/WT_REP1.SJ.out.tab",
"star_salmon/log/WT_REP2.Log.final.out",
"star_salmon/log/WT_REP2.Log.out",
"star_salmon/log/WT_REP2.Log.progress.out",
"star_salmon/log/WT_REP2.SJ.out.tab",
"star_salmon/salmon.merged.gene.SummarizedExperiment.rds",
"star_salmon/salmon.merged.gene_counts.tsv",
"star_salmon/salmon.merged.gene_counts_length_scaled.tsv",
"star_salmon/salmon.merged.gene_counts_scaled.tsv",
"star_salmon/salmon.merged.gene_lengths.tsv",
"star_salmon/salmon.merged.gene_tpm.tsv",
"star_salmon/salmon.merged.transcript.SummarizedExperiment.rds",
"star_salmon/salmon.merged.transcript_counts.tsv",
"star_salmon/salmon.merged.transcript_lengths.tsv",
"star_salmon/salmon.merged.transcript_tpm.tsv",
"star_salmon/salmon.merged.tx2gene.tsv",
"star_salmon/salmon.merged.tx2gene_augmented.tsv",
"star_salmon/samtools_stats",
"star_salmon/samtools_stats/RAP1_IAA_30M_REP1.sorted.bam.flagstat",
"star_salmon/samtools_stats/RAP1_IAA_30M_REP1.sorted.bam.idxstats",
"star_salmon/samtools_stats/RAP1_IAA_30M_REP1.sorted.bam.stats",
"star_salmon/samtools_stats/RAP1_UNINDUCED_REP1.sorted.bam.flagstat",
"star_salmon/samtools_stats/RAP1_UNINDUCED_REP1.sorted.bam.idxstats",
"star_salmon/samtools_stats/RAP1_UNINDUCED_REP1.sorted.bam.stats",
"star_salmon/samtools_stats/RAP1_UNINDUCED_REP2.sorted.bam.flagstat",
"star_salmon/samtools_stats/RAP1_UNINDUCED_REP2.sorted.bam.idxstats",
"star_salmon/samtools_stats/RAP1_UNINDUCED_REP2.sorted.bam.stats",
"star_salmon/samtools_stats/WT_REP1.sorted.bam.flagstat",
"star_salmon/samtools_stats/WT_REP1.sorted.bam.idxstats",
"star_salmon/samtools_stats/WT_REP1.sorted.bam.stats",
"star_salmon/samtools_stats/WT_REP2.sorted.bam.flagstat",
"star_salmon/samtools_stats/WT_REP2.sorted.bam.idxstats",
"star_salmon/samtools_stats/WT_REP2.sorted.bam.stats",
"trimgalore",
"trimgalore/RAP1_IAA_30M_REP1_trimmed_1.fastq.gz_trimming_report.txt",
"trimgalore/RAP1_IAA_30M_REP1_trimmed_2.fastq.gz_trimming_report.txt",
"trimgalore/RAP1_UNINDUCED_REP1_trimmed.fastq.gz_trimming_report.txt",
"trimgalore/RAP1_UNINDUCED_REP2_trimmed.fastq.gz_trimming_report.txt",
"trimgalore/WT_REP1_trimmed_1.fastq.gz_trimming_report.txt",
"trimgalore/WT_REP1_trimmed_2.fastq.gz_trimming_report.txt",
"trimgalore/WT_REP2_trimmed_1.fastq.gz_trimming_report.txt",
"trimgalore/WT_REP2_trimmed_2.fastq.gz_trimming_report.txt"
],
[
"cutadapt_filtered_reads_plot.txt:md5,6fa381627f7c1f664f3d4b2cb79cce90",
"cutadapt_trimmed_sequences_plot_3_Counts.txt:md5,13dfa866fd91dbb072689efe9aa83b1f",
"cutadapt_trimmed_sequences_plot_3_Obs_Exp.txt:md5,07145dd8dd3db654859b18eb0389046c",
"fastqc_raw-status-check-heatmap.txt:md5,5a89b0d8d162f6b1dbdaf39457bbc03b",
"fastqc_raw_adapter_content_plot.txt:md5,da0389be84cfdd189b1d045212eb2974",
"fastqc_raw_overrepresented_sequences_plot.txt:md5,25d88ea8a72f55e8a374ae802bc7f0b1",
"fastqc_raw_per_base_n_content_plot.txt:md5,d368d7e36ca2f73dcde61f2b486d8213",
"fastqc_raw_per_base_sequence_quality_plot.txt:md5,5c3065b549129702b185ea1b817da420",
"fastqc_raw_per_sequence_gc_content_plot_Counts.txt:md5,9ddaa50167117d3c9188ccf015427704",
"fastqc_raw_per_sequence_gc_content_plot_Percentages.txt:md5,f10ee2881b61308af35f304aa3d810a3",
"fastqc_raw_per_sequence_quality_scores_plot.txt:md5,b5f9a02933e3065952237afd2ec9ce82",
"fastqc_raw_sequence_counts_plot.txt:md5,cbae4979d5db66d3b894abcf8d1c453c",
"fastqc_raw_sequence_duplication_levels_plot.txt:md5,8812cee16f6ca65e2c33635754de1772",
"fastqc_trimmed-status-check-heatmap.txt:md5,22a03548736b88b23be6bc0c9ef1b4a6",
"fastqc_trimmed_overrepresented_sequences_plot.txt:md5,c755e9d044ea1a82b2c8edde867b4878",
"fastqc_trimmed_per_base_n_content_plot.txt:md5,418610c1ce119cb786ad434db75d366e",
"fastqc_trimmed_per_base_sequence_quality_plot.txt:md5,bd22e06e41c096ad4f745d40fe96a1e5",
"fastqc_trimmed_per_sequence_gc_content_plot_Counts.txt:md5,004c60768ceb6197765154e3eaa37b7a",
"fastqc_trimmed_per_sequence_gc_content_plot_Percentages.txt:md5,95d29060b687f745288ad1ec47750037",
"fastqc_trimmed_per_sequence_quality_scores_plot.txt:md5,0f9834cc19f76dd5c87cf8cba7435a7c",
"fastqc_trimmed_sequence_counts_plot.txt:md5,9fd642bdd1da354f296bb8092205608f",
"fastqc_trimmed_sequence_duplication_levels_plot.txt:md5,0758257b497283b1ef28171e694db6db",
"multiqc_citations.txt:md5,252fa90ec20c72a2471169f215457883",
"multiqc_fail_mapped_samples_table.txt:md5,84997c51d59c06a8cb09859efa3fc6bc",
"multiqc_fastqc_fastqc_raw.txt:md5,81c3c1a2575a1891a7f2a9637a0f2cc0",
"multiqc_fastqc_fastqc_trimmed.txt:md5,54743154d0e8858980acffeb5b6f6a97",
"multiqc_samtools_idxstats.txt:md5,fd7d03a91f0b9e01a6939941f7f2243f",
"samtools-idxstats-mapped-reads-plot_Normalised_Counts.txt:md5,75acd04232d1804b5f960ee4c5db4722",
"samtools-idxstats-mapped-reads-plot_Observed_over_Expected_Counts.txt:md5,ae45731d8d4595f77e6b271004f3a070",
"samtools-idxstats-mapped-reads-plot_Raw_Counts.txt:md5,01637c600d3840500851eb4118564cc6",
"expected_bias.gz:md5,3407f87245d0003e0ffbfdf6d8c04f20",
"observed_bias.gz:md5,92bcd0592d22a6a58d0360fc76103e56",
"observed_bias_3p.gz:md5,92bcd0592d22a6a58d0360fc76103e56",
"cmd_info.json:md5,21395500c85658c70ce5fa0ac05b339a",
"expected_bias.gz:md5,3407f87245d0003e0ffbfdf6d8c04f20",
"observed_bias.gz:md5,92bcd0592d22a6a58d0360fc76103e56",
"observed_bias_3p.gz:md5,92bcd0592d22a6a58d0360fc76103e56",
"cmd_info.json:md5,faf70330c73fdce087631bb06de8a12f",
"expected_bias.gz:md5,3407f87245d0003e0ffbfdf6d8c04f20",
"observed_bias.gz:md5,92bcd0592d22a6a58d0360fc76103e56",
"observed_bias_3p.gz:md5,92bcd0592d22a6a58d0360fc76103e56",
"cmd_info.json:md5,563fd8191cc965524621c2afea7983ff",
"expected_bias.gz:md5,3407f87245d0003e0ffbfdf6d8c04f20",
"observed_bias.gz:md5,92bcd0592d22a6a58d0360fc76103e56",
"observed_bias_3p.gz:md5,92bcd0592d22a6a58d0360fc76103e56",
"cmd_info.json:md5,867de0b90aeccb5f9627e821a973aea7",
"expected_bias.gz:md5,3407f87245d0003e0ffbfdf6d8c04f20",
"observed_bias.gz:md5,92bcd0592d22a6a58d0360fc76103e56",
"observed_bias_3p.gz:md5,92bcd0592d22a6a58d0360fc76103e56",
"cmd_info.json:md5,3a51e7db950cee84bed0b13e329f1934",
"RAP1_IAA_30M_REP1.SJ.out.tab:md5,ea95e243278af55534f2c52eb5fff7ee",
"RAP1_UNINDUCED_REP1.SJ.out.tab:md5,e548d13942535dc0821f3ec6d9743ec8",
"RAP1_UNINDUCED_REP2.SJ.out.tab:md5,1f294365343a1a5e95682792fdb77033",
"WT_REP1.SJ.out.tab:md5,1350c2fa6a675bf107386c6cd3fc5204",
"WT_REP2.SJ.out.tab:md5,f6cc03643a5e3c1025a5b4754eb1be23",
"salmon.merged.tx2gene.tsv:md5,0e2418a69d2eba45097ebffc2f700bfe",
"salmon.merged.tx2gene_augmented.tsv:md5,0e2418a69d2eba45097ebffc2f700bfe"
]
],
"meta": {
"nf-test": "0.9.3",
"nextflow": "26.04.6"
},
"timestamp": "2026-07-31T12:53:06.381504124"
},
"Params: parabricks star_salmon (with markdups) - stub": {
"content": [
27,
{
"BBMAP_BBSPLIT": {
"bbmap": 39.18
},
"CAT_FASTQ": {
"cat": 9.5
},
"CUSTOM_CATADDITIONALFASTA": {
"python": "3.12.2"
},
"CUSTOM_GTFFILTER": {
"python": "3.9.5"
},
"EAUTILS_GTF2BED": {
"perl": "5.26.2"
},
"FASTQC": {
"fastqc": "0.12.1"
},
"FQ_LINT": {
"fq": "0.12.0"
},
"GUNZIP_ADDITIONAL_FASTA": {
"gunzip": 1.13
},
"GUNZIP_GTF": {
"gunzip": 1.13
},
"PARABRICKS_STARGENOMEGENERATE": {
"gawk": "5.1.0",
"samtools": 1.21,
"star": "2.7.2a"
},
"SAMTOOLS_FAIDX": {
"samtools": "1.23.1"
},
"TRIMGALORE": {
"trimgalore": "2.3.0"
},
"UNTAR_SALMON_INDEX": {
"untar": 1.34
}
},
[
"fastqc",
"fastqc/raw",
"fastqc/raw/RAP1_IAA_30M_REP1_raw.html",
"fastqc/raw/RAP1_IAA_30M_REP1_raw.zip",
"fastqc/raw/RAP1_UNINDUCED_REP1_raw.html",
"fastqc/raw/RAP1_UNINDUCED_REP1_raw.zip",
"fastqc/raw/RAP1_UNINDUCED_REP2_raw.html",
"fastqc/raw/RAP1_UNINDUCED_REP2_raw.zip",
"fastqc/raw/WT_REP1_raw.html",
"fastqc/raw/WT_REP1_raw.zip",
"fastqc/raw/WT_REP2_raw.html",
"fastqc/raw/WT_REP2_raw.zip",
"fastqc/trim",
"fq_lint",
"fq_lint/raw",
"fq_lint/raw/RAP1_IAA_30M_REP1.fq_lint.txt",
"fq_lint/raw/RAP1_UNINDUCED_REP1.fq_lint.txt",
"fq_lint/raw/RAP1_UNINDUCED_REP2.fq_lint.txt",
"fq_lint/raw/WT_REP1.fq_lint.txt",
"fq_lint/raw/WT_REP2.fq_lint.txt",
"multiqc",
"multiqc/star_salmon",
"multiqc/star_salmon/multiqc_data",
"multiqc/star_salmon/multiqc_data/.stub",
"multiqc/star_salmon/multiqc_plots",
"multiqc/star_salmon/multiqc_plots/.stub",
"multiqc/star_salmon/multiqc_report.html",
"pipeline_info",
"pipeline_info/nf_core_rnaseq_software_mqc_versions.yml",
"trimgalore",
"trimgalore/RAP1_IAA_30M_REP1_trimmed_1.fastq.gz_trimming_report.txt",
"trimgalore/RAP1_IAA_30M_REP1_trimmed_2.fastq.gz_trimming_report.txt",
"trimgalore/RAP1_UNINDUCED_REP1_trimmed.fastq.gz_trimming_report.txt",
"trimgalore/RAP1_UNINDUCED_REP2_trimmed.fastq.gz_trimming_report.txt",
"trimgalore/WT_REP1_trimmed_1.fastq.gz_trimming_report.txt",
"trimgalore/WT_REP1_trimmed_2.fastq.gz_trimming_report.txt",
"trimgalore/WT_REP2_trimmed_1.fastq.gz_trimming_report.txt",
"trimgalore/WT_REP2_trimmed_2.fastq.gz_trimming_report.txt"
],
[
]
],
"meta": {
"nf-test": "0.9.3",
"nextflow": "25.10.3"
},
"timestamp": "2026-02-06T08:42:09.878805304"
},
"Params: parabricks star_salmon (no markdups) - stub": {
"content": [
27,
{
"BBMAP_BBSPLIT": {
"bbmap": 39.18
},
"CAT_FASTQ": {
"cat": 9.5
},
"CUSTOM_CATADDITIONALFASTA": {
"python": "3.12.2"
},
"CUSTOM_GTFFILTER": {
"python": "3.9.5"
},
"EAUTILS_GTF2BED": {
"perl": "5.26.2"
},
"FASTQC": {
"fastqc": "0.12.1"
},
"FQ_LINT": {
"fq": "0.12.0"
},
"GUNZIP_ADDITIONAL_FASTA": {
"gunzip": 1.13
},
"GUNZIP_GTF": {
"gunzip": 1.13
},
"PARABRICKS_STARGENOMEGENERATE": {
"gawk": "5.1.0",
"samtools": 1.21,
"star": "2.7.2a"
},
"SAMTOOLS_FAIDX": {
"samtools": "1.23.1"
},
"TRIMGALORE": {
"trimgalore": "2.3.0"
},
"UNTAR_SALMON_INDEX": {
"untar": 1.34
}
},
[
"fastqc",
"fastqc/raw",
"fastqc/raw/RAP1_IAA_30M_REP1_raw.html",
"fastqc/raw/RAP1_IAA_30M_REP1_raw.zip",
"fastqc/raw/RAP1_UNINDUCED_REP1_raw.html",
"fastqc/raw/RAP1_UNINDUCED_REP1_raw.zip",
"fastqc/raw/RAP1_UNINDUCED_REP2_raw.html",
"fastqc/raw/RAP1_UNINDUCED_REP2_raw.zip",
"fastqc/raw/WT_REP1_raw.html",
"fastqc/raw/WT_REP1_raw.zip",
"fastqc/raw/WT_REP2_raw.html",
"fastqc/raw/WT_REP2_raw.zip",
"fastqc/trim",
"fq_lint",
"fq_lint/raw",
"fq_lint/raw/RAP1_IAA_30M_REP1.fq_lint.txt",
"fq_lint/raw/RAP1_UNINDUCED_REP1.fq_lint.txt",
"fq_lint/raw/RAP1_UNINDUCED_REP2.fq_lint.txt",
"fq_lint/raw/WT_REP1.fq_lint.txt",
"fq_lint/raw/WT_REP2.fq_lint.txt",
"multiqc",
"multiqc/star_salmon",
"multiqc/star_salmon/multiqc_data",
"multiqc/star_salmon/multiqc_data/.stub",
"multiqc/star_salmon/multiqc_plots",
"multiqc/star_salmon/multiqc_plots/.stub",
"multiqc/star_salmon/multiqc_report.html",
"pipeline_info",
"pipeline_info/nf_core_rnaseq_software_mqc_versions.yml",
"trimgalore",
"trimgalore/RAP1_IAA_30M_REP1_trimmed_1.fastq.gz_trimming_report.txt",
"trimgalore/RAP1_IAA_30M_REP1_trimmed_2.fastq.gz_trimming_report.txt",
"trimgalore/RAP1_UNINDUCED_REP1_trimmed.fastq.gz_trimming_report.txt",
"trimgalore/RAP1_UNINDUCED_REP2_trimmed.fastq.gz_trimming_report.txt",
"trimgalore/WT_REP1_trimmed_1.fastq.gz_trimming_report.txt",
"trimgalore/WT_REP1_trimmed_2.fastq.gz_trimming_report.txt",
"trimgalore/WT_REP2_trimmed_1.fastq.gz_trimming_report.txt",
"trimgalore/WT_REP2_trimmed_2.fastq.gz_trimming_report.txt"
],
[
]
],
"meta": {
"nf-test": "0.9.3",
"nextflow": "25.10.3"
},
"timestamp": "2026-02-06T08:41:23.807002515"
},
"Params: parabricks star_salmon (with markdups)": {
"content": [
89,
{
"BBMAP_BBSPLIT": {
"bbmap": 39.18
},
"CAT_FASTQ": {
"cat": 9.5
},
"CUSTOM_CATADDITIONALFASTA": {
"python": "3.12.2"
},
"CUSTOM_GTFFILTER": {
"python": "3.9.5"
},
"CUSTOM_TX2GENE": {
"python": "3.10.4"
},
"DESEQ2_QC_BAM_SALMON": {
"bioconductor-deseq2": "1.46.0",
"r-base": "4.4.2"
},
"EAUTILS_GTF2BED": {
"perl": "5.26.2"
},
"FASTQC": {
"fastqc": "0.12.1"
},
"FASTQC_FILTERED": {
"fastqc": "0.12.1"
},
"FQ_LINT": {
"fq": "0.12.0"
},
"FQ_LINT_AFTER_BBSPLIT": {
"fq": "0.12.0"
},
"FQ_LINT_AFTER_TRIMMING": {
"fq": "0.12.0"
},
"FQ_SUBSAMPLE": {
"fq": "0.12.0"
},
"GUNZIP_ADDITIONAL_FASTA": {
"gunzip": 1.13
},
"GUNZIP_GTF": {
"gunzip": 1.13
},
"PARABRICKS_RNA_FQ2BAM": {
"parabricks": "4.7.1-1"
},
"PARABRICKS_STARGENOMEGENERATE": {
"gawk": "5.1.0",
"samtools": 1.21,
"star": "2.7.2a"
},
"SALMON_QUANT": {
"salmon": "1.10.3"
},
"SAMTOOLS_FAIDX": {
"samtools": "1.23.1"
},
"SAMTOOLS_FLAGSTAT": {
"samtools": "1.23.1"
},
"SAMTOOLS_IDXSTATS": {
"samtools": "1.23.1"
},
"SAMTOOLS_INDEX": {
"samtools": "1.23.1"
},
"SAMTOOLS_SORT": {
"samtools": "1.23.1"
},
"SAMTOOLS_STATS": {
"samtools": "1.23.1"
},
"SE_GENE_UNIFIED": {
"bioconductor-summarizedexperiment": "1.32.0"
},
"SE_TRANSCRIPT_UNIFIED": {
"bioconductor-summarizedexperiment": "1.32.0"
},
"TRIMGALORE": {
"trimgalore": "2.3.0"
},
"TXIMETA_TXIMPORT": {
"bioconductor-tximeta": "1.20.1"
},
"UNTAR_SALMON_INDEX": {
"untar": 1.34
}
},
[
"bbsplit",
"bbsplit/RAP1_IAA_30M_REP1.stats.txt",
"bbsplit/RAP1_UNINDUCED_REP1.stats.txt",
"bbsplit/RAP1_UNINDUCED_REP2.stats.txt",
"bbsplit/WT_REP1.stats.txt",
"bbsplit/WT_REP2.stats.txt",
"fastqc",
"fastqc/filtered",
"fastqc/filtered/RAP1_IAA_30M_REP1_filtered_1_fastqc.html",
"fastqc/filtered/RAP1_IAA_30M_REP1_filtered_1_fastqc.zip",
"fastqc/filtered/RAP1_IAA_30M_REP1_filtered_2_fastqc.html",
"fastqc/filtered/RAP1_IAA_30M_REP1_filtered_2_fastqc.zip",
"fastqc/filtered/RAP1_UNINDUCED_REP1_filtered_fastqc.html",
"fastqc/filtered/RAP1_UNINDUCED_REP1_filtered_fastqc.zip",
"fastqc/filtered/RAP1_UNINDUCED_REP2_filtered_fastqc.html",
"fastqc/filtered/RAP1_UNINDUCED_REP2_filtered_fastqc.zip",
"fastqc/filtered/WT_REP1_filtered_1_fastqc.html",
"fastqc/filtered/WT_REP1_filtered_1_fastqc.zip",
"fastqc/filtered/WT_REP1_filtered_2_fastqc.html",
"fastqc/filtered/WT_REP1_filtered_2_fastqc.zip",
"fastqc/filtered/WT_REP2_filtered_1_fastqc.html",
"fastqc/filtered/WT_REP2_filtered_1_fastqc.zip",
"fastqc/filtered/WT_REP2_filtered_2_fastqc.html",
"fastqc/filtered/WT_REP2_filtered_2_fastqc.zip",
"fastqc/raw",
"fastqc/raw/RAP1_IAA_30M_REP1_raw_1_fastqc.html",
"fastqc/raw/RAP1_IAA_30M_REP1_raw_1_fastqc.zip",
"fastqc/raw/RAP1_IAA_30M_REP1_raw_2_fastqc.html",
"fastqc/raw/RAP1_IAA_30M_REP1_raw_2_fastqc.zip",
"fastqc/raw/RAP1_UNINDUCED_REP1_raw_fastqc.html",
"fastqc/raw/RAP1_UNINDUCED_REP1_raw_fastqc.zip",
"fastqc/raw/RAP1_UNINDUCED_REP2_raw_fastqc.html",
"fastqc/raw/RAP1_UNINDUCED_REP2_raw_fastqc.zip",
"fastqc/raw/WT_REP1_raw_1_fastqc.html",
"fastqc/raw/WT_REP1_raw_1_fastqc.zip",
"fastqc/raw/WT_REP1_raw_2_fastqc.html",
"fastqc/raw/WT_REP1_raw_2_fastqc.zip",
"fastqc/raw/WT_REP2_raw_1_fastqc.html",
"fastqc/raw/WT_REP2_raw_1_fastqc.zip",
"fastqc/raw/WT_REP2_raw_2_fastqc.html",
"fastqc/raw/WT_REP2_raw_2_fastqc.zip",
"fastqc/trim",
"fastqc/trim/RAP1_IAA_30M_REP1_trimmed_1_val_1_fastqc.html",
"fastqc/trim/RAP1_IAA_30M_REP1_trimmed_1_val_1_fastqc.zip",
"fastqc/trim/RAP1_IAA_30M_REP1_trimmed_2_val_2_fastqc.html",
"fastqc/trim/RAP1_IAA_30M_REP1_trimmed_2_val_2_fastqc.zip",
"fastqc/trim/RAP1_UNINDUCED_REP1_trimmed_trimmed_fastqc.html",
"fastqc/trim/RAP1_UNINDUCED_REP1_trimmed_trimmed_fastqc.zip",
"fastqc/trim/RAP1_UNINDUCED_REP2_trimmed_trimmed_fastqc.html",
"fastqc/trim/RAP1_UNINDUCED_REP2_trimmed_trimmed_fastqc.zip",
"fastqc/trim/WT_REP1_trimmed_1_val_1_fastqc.html",
"fastqc/trim/WT_REP1_trimmed_1_val_1_fastqc.zip",
"fastqc/trim/WT_REP1_trimmed_2_val_2_fastqc.html",
"fastqc/trim/WT_REP1_trimmed_2_val_2_fastqc.zip",
"fastqc/trim/WT_REP2_trimmed_1_val_1_fastqc.html",
"fastqc/trim/WT_REP2_trimmed_1_val_1_fastqc.zip",
"fastqc/trim/WT_REP2_trimmed_2_val_2_fastqc.html",
"fastqc/trim/WT_REP2_trimmed_2_val_2_fastqc.zip",
"fq_lint",
"fq_lint/bbsplit",
"fq_lint/bbsplit/RAP1_IAA_30M_REP1.fq_lint.txt",
"fq_lint/bbsplit/RAP1_UNINDUCED_REP1.fq_lint.txt",
"fq_lint/bbsplit/RAP1_UNINDUCED_REP2.fq_lint.txt",
"fq_lint/bbsplit/WT_REP1.fq_lint.txt",
"fq_lint/bbsplit/WT_REP2.fq_lint.txt",
"fq_lint/raw",
"fq_lint/raw/RAP1_IAA_30M_REP1.fq_lint.txt",
"fq_lint/raw/RAP1_UNINDUCED_REP1.fq_lint.txt",
"fq_lint/raw/RAP1_UNINDUCED_REP2.fq_lint.txt",
"fq_lint/raw/WT_REP1.fq_lint.txt",
"fq_lint/raw/WT_REP2.fq_lint.txt",
"fq_lint/trimmed",
"fq_lint/trimmed/RAP1_IAA_30M_REP1.fq_lint.txt",