-
Notifications
You must be signed in to change notification settings - Fork 1
1250 lines (1195 loc) · 46.3 KB
/
main.yml
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
name: CI
on:
push:
branches:
- "*"
paths:
- data/**
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
jobs:
# Placeholder
build-samples:
if: github.actor != 'github-actions[bot]'
runs-on: ubuntu-20.04
environment: build
# needs: [build-drugs-beataml,depmap-docker-build]
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Download artifacts from previous drug gen
uses: actions/download-artifact@v2
- name: Pull sample image
run: docker pull sgosline/srp-samplechem
- name: Run sample-chem python command
run: |
docker run -v $PWD:/tmp sgosline/samplechem python build_script.py --samps
- name: List files cwd
run: ls -lah
# - name: Copy drugs file to artifact
# run: |
# mkdir additive-drugs-file-2
# mv drugs.tsv ignore_chems.txt additive-drugs-file-2
# - name: Upload artifacts for genes
# uses: actions/upload-artifact@v2
# with:
# name: additive-drugs-file-2
# path: additive-drugs-file-2
# build-drugs-depmap-NCI60-pt1:
# if: github.actor != 'github-actions[bot]'
# runs-on: ubuntu-20.04
# environment: build
# needs: [build-drugs-depmap-CTRPv2-GDSC-gCSI-PRISM-CCLE-FIMM]
# steps:
# - name: Checkout Repo
# uses: actions/checkout@v2
# - name: Download artifacts from previous drug gen
# uses: actions/download-artifact@v2
# with:
# name: additive-drugs-file-2
# - name: List files cwd
# run: ls -lah
# # - name: Install R
# # uses: r-lib/actions/setup-r@v2
# # - name: Install R and Python Packages
# # run: |
# # Rscript build/depmap/requirements.r
# # pip install -r build/depmap/requirements.txt
# - name: Pull depmap image
# run: docker pull jjacobson95/depmap
# - name: Run depmap NCI60 Drug retrieval
# run: |
# docker run -v $PWD:/tmp jjacobson95/depmap Rscript /app/CreateDrugFileCL.R NCI60
# # - name: Run depmap NCI60 Drug retrieval
# # run: Rscript build/depmap/CreateDrugFileCL.R NCI60
# - name: Copy drugs file to artifact
# run: |
# mkdir additive-drugs-file-3
# mv drugs.tsv ignore_chems.txt additive-drugs-file-3
# - name: Upload artifacts for genes
# uses: actions/upload-artifact@v2
# with:
# name: additive-drugs-file-3
# path: additive-drugs-file-3
# build-drugs-depmap-NCI60-pt2:
# if: github.actor != 'github-actions[bot]'
# runs-on: ubuntu-20.04
# environment: build
# needs: [build-drugs-depmap-NCI60-pt1]
# steps:
# - name: Checkout Repo
# uses: actions/checkout@v2
# - name: Download artifacts from previous drug gen
# uses: actions/download-artifact@v2
# with:
# name: additive-drugs-file-3
# - name: List files cwd
# run: ls -lah
# - name: Pull depmap image
# run: docker pull jjacobson95/depmap
# - name: Run depmap NCI60 Drug retrieval
# run: |
# docker run -v $PWD:/tmp jjacobson95/depmap Rscript /app/CreateDrugFileCL.R NCI60
# - name: Copy drugs file to artifact
# run: |
# mkdir additive-drugs-file-4
# mv drugs.tsv ignore_chems.txt additive-drugs-file-4
# - name: Upload artifacts for genes
# uses: actions/upload-artifact@v2
# with:
# name: additive-drugs-file-4
# path: additive-drugs-file-4
# build-drugs-depmap-NCI60-pt3:
# if: github.actor != 'github-actions[bot]'
# runs-on: ubuntu-20.04
# environment: build
# needs: [build-drugs-depmap-NCI60-pt2]
# steps:
# - name: Checkout Repo
# uses: actions/checkout@v2
# - name: Download artifacts from previous drug gen
# uses: actions/download-artifact@v2
# with:
# name: additive-drugs-file-4
# - name: List files cwd
# run: ls -lah
# - name: Pull depmap image
# run: docker pull jjacobson95/depmap
# - name: Run depmap NCI60 Drug retrieval
# run: |
# docker run -v $PWD:/tmp jjacobson95/depmap Rscript /app/CreateDrugFileCL.R NCI60
# - name: Copy drugs file to artifact
# run: |
# mkdir additive-drugs-file-5
# mv drugs.tsv ignore_chems.txt additive-drugs-file-5
# - name: Upload artifacts for genes
# uses: actions/upload-artifact@v2
# with:
# name: additive-drugs-file-5
# path: additive-drugs-file-5
# build-drugs-depmap-NCI60-pt4:
# if: github.actor != 'github-actions[bot]'
# runs-on: ubuntu-20.04
# environment: build
# needs: [build-drugs-depmap-NCI60-pt3]
# steps:
# - name: Checkout Repo
# uses: actions/checkout@v2
# - name: Download artifacts from previous drug gen
# uses: actions/download-artifact@v2
# with:
# name: additive-drugs-file-5
# - name: List files cwd
# run: ls -lah
# - name: Pull depmap image
# run: docker pull jjacobson95/depmap
# - name: Run depmap NCI60 Drug retrieval
# run: |
# docker run -v $PWD:/tmp jjacobson95/depmap Rscript /app/CreateDrugFileCL.R NCI60
# - name: Copy drugs file to artifact
# run: |
# mkdir additive-drugs-file-6
# mv drugs.tsv ignore_chems.txt additive-drugs-file-6
# - name: Upload artifacts for genes
# uses: actions/upload-artifact@v2
# with:
# name: additive-drugs-file-6
# path: additive-drugs-file-6
# # build-drugs-depmap-NCI60-pt5:
# # if: github.actor != 'github-actions[bot]'
# # runs-on: ubuntu-20.04
# # environment: build
# # needs: [build-drugs-depmap-NCI60-pt4]
# # steps:
# # - name: Checkout Repo
# # uses: actions/checkout@v2
# # - name: Download artifacts from previous drug gen
# # uses: actions/download-artifact@v2
# # with:
# # name: additive-drugs-file-6
# # - name: List files cwd
# # run: ls -lah
# # - name: Pull depmap image
# # run: docker pull jjacobson95/depmap
# # - name: Run depmap NCI60 Drug retrieval
# # run: |
# # docker run -v $PWD:/tmp jjacobson95/depmap Rscript /app/CreateDrugFileCL.R NCI60
# # - name: Copy drugs file to artifact
# # run: |
# # mkdir additive-drugs-file-7
# # mv drugs.tsv ignore_chems.txt additive-drugs-file-7
# # - name: Upload artifacts for genes
# # uses: actions/upload-artifact@v2
# # with:
# # name: additive-drugs-file-7
# # path: additive-drugs-file-7
# # build-drugs-depmap-NCI60-pt6:
# # if: github.actor != 'github-actions[bot]'
# # runs-on: ubuntu-20.04
# # environment: build
# # needs: [build-drugs-depmap-NCI60-pt5]
# # steps:
# # - name: Checkout Repo
# # uses: actions/checkout@v2
# # - name: Download artifacts from previous drug gen
# # uses: actions/download-artifact@v2
# # with:
# # name: additive-drugs-file-7
# # - name: List files cwd
# # run: ls -lah
# # - name: Pull depmap image
# # run: docker pull jjacobson95/depmap
# # - name: Run depmap NCI60 Drug retrieval
# # run: |
# # docker run -v $PWD:/tmp jjacobson95/depmap Rscript /app/CreateDrugFileCL.R NCI60
# # - name: Copy drugs file to artifact
# # run: |
# # mkdir additive-drugs-file-8
# # mv drugs.tsv ignore_chems.txt additive-drugs-file-8
# # - name: Upload artifacts for genes
# # uses: actions/upload-artifact@v2
# # with:
# # name: additive-drugs-file-8
# # path: additive-drugs-file-8
# # build-drugs-depmap-NCI60-pt7:
# # if: github.actor != 'github-actions[bot]'
# # runs-on: ubuntu-20.04
# # environment: build
# # needs: [build-drugs-depmap-NCI60-pt6]
# # steps:
# # - name: Checkout Repo
# # uses: actions/checkout@v2
# # - name: Download artifacts from previous drug gen
# # uses: actions/download-artifact@v2
# # with:
# # name: additive-drugs-file-8
# # - name: List files cwd
# # run: ls -lah
# # - name: Pull depmap image
# # run: docker pull jjacobson95/depmap
# # - name: Run depmap NCI60 Drug retrieval
# # run: |
# # docker run -v $PWD:/tmp jjacobson95/depmap Rscript /app/CreateDrugFileCL.R NCI60
# # - name: Copy drugs file to artifact
# # run: |
# # mkdir additive-drugs-file-9
# # mv drugs.tsv ignore_chems.txt additive-drugs-file-9
# # - name: Upload artifacts for genes
# # uses: actions/upload-artifact@v2
# # with:
# # name: additive-drugs-file-9
# # path: additive-drugs-file-9
# # build-drugs-depmap-NCI60-pt8:
# # if: github.actor != 'github-actions[bot]'
# # runs-on: ubuntu-20.04
# # environment: build
# # needs: [build-drugs-depmap-NCI60-pt7]
# # steps:
# # - name: Checkout Repo
# # uses: actions/checkout@v2
# # - name: Download artifacts from previous drug gen
# # uses: actions/download-artifact@v2
# # with:
# # name: additive-drugs-file-9
# # - name: List files cwd
# # run: ls -lah
# # - name: Pull depmap image
# # run: docker pull jjacobson95/depmap
# # - name: Run depmap NCI60 Drug retrieval
# # run: |
# # docker run -v $PWD:/tmp jjacobson95/depmap Rscript /app/CreateDrugFileCL.R NCI60
# # - name: Copy drugs file to artifact
# # run: |
# # mkdir additive-drugs-file-10
# # mv drugs.tsv ignore_chems.txt additive-drugs-file-10
# # - name: Upload artifacts for genes
# # uses: actions/upload-artifact@v2
# # with:
# # name: additive-drugs-file-10
# # path: additive-drugs-file-10
# # build-drugs-depmap-NCI60-pt9:
# # if: github.actor != 'github-actions[bot]'
# # runs-on: ubuntu-20.04
# # environment: build
# # needs: [build-drugs-depmap-NCI60-pt8]
# # steps:
# # - name: Checkout Repo
# # uses: actions/checkout@v2
# # - name: Download artifacts from previous drug gen
# # uses: actions/download-artifact@v2
# # with:
# # name: additive-drugs-file-10
# # - name: List files cwd
# # run: ls -lah
# # - name: Pull depmap image
# # run: docker pull jjacobson95/depmap
# # - name: Run depmap NCI60 Drug retrieval
# # run: |
# # docker run -v $PWD:/tmp jjacobson95/depmap Rscript /app/CreateDrugFileCL.R NCI60
# # - name: Copy drugs file to artifact
# # run: |
# # mkdir additive-drugs-file-11
# # mv drugs.tsv ignore_chems.txt additive-drugs-file-11
# # - name: Upload artifacts for genes
# # uses: actions/upload-artifact@v2
# # with:
# # name: additive-drugs-file-11
# # path: additive-drugs-file-11
# # build-drugs-depmap-NCI60-pt10:
# # if: github.actor != 'github-actions[bot]'
# # runs-on: ubuntu-20.04
# # environment: build
# # needs: [build-drugs-depmap-NCI60-pt9]
# # steps:
# # - name: Checkout Repo
# # uses: actions/checkout@v2
# # - name: Download artifacts from previous drug gen
# # uses: actions/download-artifact@v2
# # with:
# # name: additive-drugs-file-11
# # - name: List files cwd
# # run: ls -lah
# # - name: Pull depmap image
# # run: docker pull jjacobson95/depmap
# # - name: Run depmap NCI60 Drug retrieval
# # run: |
# # docker run -v $PWD:/tmp jjacobson95/depmap Rscript /app/CreateDrugFileCL.R NCI60
# # - name: Copy drugs file to artifact
# # run: |
# # mkdir additive-drugs-file-12
# # mv drugs.tsv ignore_chems.txt additive-drugs-file-12
# # - name: Upload artifacts for genes
# # uses: actions/upload-artifact@v2
# # with:
# # name: additive-drugs-file-12
# # path: additive-drugs-file-12
# # build-drugs-depmap-NCI60-pt11:
# # if: github.actor != 'github-actions[bot]'
# # runs-on: ubuntu-20.04
# # environment: build
# # needs: [build-drugs-depmap-NCI60-pt10]
# # steps:
# # - name: Checkout Repo
# # uses: actions/checkout@v2
# # - name: Download artifacts from previous drug gen
# # uses: actions/download-artifact@v2
# # with:
# # name: additive-drugs-file-12
# # - name: List files cwd
# # run: ls -lah
# # - name: Pull depmap image
# # run: docker pull jjacobson95/depmap
# # - name: Run depmap NCI60 Drug retrieval
# # run: |
# # docker run -v $PWD:/tmp jjacobson95/depmap Rscript /app/CreateDrugFileCL.R NCI60
# # - name: Copy drugs file to artifact
# # run: |
# # mkdir additive-drugs-file-13
# # mv drugs.tsv ignore_chems.txt additive-drugs-file-13
# # - name: Upload artifacts for genes
# # uses: actions/upload-artifact@v2
# # with:
# # name: additive-drugs-file-13
# # path: additive-drugs-file-13
# build-drugs-depmap-capture-stragglers:
# if: github.actor != 'github-actions[bot]'
# runs-on: ubuntu-20.04
# environment: build
# needs: [build-drugs-depmap-NCI60-pt4]
# steps:
# - name: Checkout Repo
# uses: actions/checkout@v2
# - name: Download artifacts from previous drug gen
# uses: actions/download-artifact@v2
# with:
# name: additive-drugs-file-6
# - name: List files cwd
# run: ls -lah
# - name: List files cwd
# run: rm ignore_chems.txt
# - name: Pull depmap image
# run: docker pull jjacobson95/depmap
# - name: Run depmap straggler Drug retrieval
# run: |
# docker run -v $PWD:/tmp jjacobson95/depmap Rscript /app/CreateDrugFileCL.R CTRPv2,GDSC,gCSI,PRISM,CCLE,FIMM,NCI60
# - name: Copy drugs file to artifact
# run: |
# mkdir additive-drugs-file-7
# mv drugs.tsv ignore_chems.txt additive-drugs-file-7
# - name: Upload artifacts for genes
# uses: actions/upload-artifact@v2
# with:
# name: additive-drugs-file-7
# path: additive-drugs-file-7
# build-cptac-samples:
# if: github.actor != 'github-actions[bot]'
# runs-on: ubuntu-20.04
# environment: build
# needs: [build-depmap-samples,cptac-docker-build]
# steps:
# #Add upload artifact from CPTAC Samples
# - name: Checkout CPTAC
# uses: actions/checkout@v2
# - name: Download artifacts from depmap
# uses: actions/download-artifact@v2
# with:
# name: depmap-samples
# - name: Download artifacts from DepMap (genes)
# uses: actions/download-artifact@v2
# with:
# name: genes-file
# # - name: Copy DepMap sample from build location.
# # run: |
# # cp build/cptac/requirements.txt .
# # cp build/cptac/*.py .
# # # copy build/genes.csv .
# - name: Pull cptac image
# run: docker pull jjacobson95/cptac
# - name: Run CPTAC samples Container
# run: docker run -v $PWD:/tmp jjacobson95/cptac --geneFile=/tmp/genes.csv --prevSampleFile=/tmp/depmap_samples.csv
# - name: Copy file from CPTAC Samples Container
# run: |
# mkdir cptac-samples
# mv cptac_samples.csv cptac-samples
# - name: Upload artifacts for CPTAC
# uses: actions/upload-artifact@v2
# with:
# name: cptac-samples
# path: cptac-samples
# build-hcmi-samples:
# if: github.actor != 'github-actions[bot]'
# runs-on: ubuntu-20.04
# environment: build
# needs: [build-cptac-samples,hcmi-docker-build]
# steps:
# - name: Checkout HCMI
# uses: actions/checkout@v2
# - name: Download artifacts from CPTAC
# uses: actions/download-artifact@v2
# with:
# name: cptac-samples
# # - name: Build HCMI Image
# # run: docker build -t hcmi-samples-builder -f build/docker/Dockerfile.hcmi .
# - name: Pull hcmi image
# run: docker pull jjacobson95/hcmi
# - name: Run HCMI samples Container
# run: docker run -v $PWD:/tmp --name hcmi-samples-container jjacobson95/hcmi python 01-createHCMISamplesFile.py
# - name: Copy file from HCMI Samples Container
# run: |
# mkdir hcmi-samples
# for file in hcmi_samples.csv; do
# docker cp hcmi-samples-container:/usr/src/app/$file hcmi-samples/$file
# done
# - name: Get HCMI container logs
# run: docker logs hcmi-samples-container
# - name: Upload artifacts for HCMI
# uses: actions/upload-artifact@v2
# with:
# name: hcmi-samples
# path: hcmi-samples
# build-beataml-samples:
# if: github.actor != 'github-actions[bot]'
# runs-on: ubuntu-20.04
# environment: build
# needs: [build-hcmi-samples,beataml-docker-build]
# steps:
# #Add upload artifact from CPTAC Samples
# - name: Checkout BeatAML
# uses: actions/checkout@v2
# - name: Download artifacts from HCMI
# uses: actions/download-artifact@v2
# with:
# name: hcmi-samples
# - name: Pull beataml image
# run: docker pull jjacobson95/beataml
# - name: Run BeatAML Container with samples option
# run: docker run -v $PWD:/tmp --name beataml-samples-container jjacobson95/beataml python GetBeatAML.py --token ${{ secrets.SYNAPSE_TOKEN_SECRET }} --samples
# - name: Copy file from BeatAML Samples Container
# run: |
# mkdir beataml-samples
# for file in beataml_samples.csv; do
# docker cp beataml-samples-container:/usr/src/app/$file beataml-samples/$file
# done
# - name: Get BeatAML container logs
# run: docker logs beataml-samples-container
# - name: Upload artifacts for BeatAML
# uses: actions/upload-artifact@v2
# with:
# name: beataml-samples
# path: beataml-samples
# # Placeholder
# build-mpnst-samples:
# if: github.actor != 'github-actions[bot]'
# runs-on: ubuntu-20.04
# environment: build
# needs: [build-beataml-samples,mpnst-docker-build]
# steps:
# #Add upload artifact from CPTAC Samples
# - name: Checkout MPNST
# uses: actions/checkout@v2
# build-hcmi:
# if: github.actor != 'github-actions[bot]'
# needs: [build-hcmi-samples]
# runs-on: ubuntu-20.04
# environment: build
# steps:
# - name: Checkout HCMI
# uses: actions/checkout@v2
# - name: Download artifacts from HCMI
# uses: actions/download-artifact@v2
# with:
# name: hcmi-samples
# - name: List files cwd
# run: ls -lah
# # - name: Build HCMI Image
# # run: docker build -t hcmi-builder -f build/docker/Dockerfile.hcmi .
# - name: Pull hcmi image
# run: docker pull jjacobson95/hcmi
# - name: Run HCMI Container
# run: |
# docker run -v $PWD:/tmp --name hcmi-container jjacobson95/hcmi /bin/bash -c "python 02-getHCMIData.py -m full_manifest.txt -t transcriptomics -o hcmi_transcriptomics.csv && python 02-getHCMIData.py -m full_manifest.txt -M full_manifest_files -t copy_number -o hcmi_copy_number.csv && python 02-getHCMIData.py -m full_manifest.txt -M full_manifest_files -t mutations -o hcmi_mutations.csv"
# - name: Copy files from HCMI Container
# run: |
# mkdir hcmi-files
# for file in hcmi_transcriptomics.csv hcmi_copy_number.csv hcmi_mutations.csv; do
# docker cp hcmi-container:/usr/src/app/$file hcmi-files/$file
# done
# cp hcmi_samples.csv hcmi-files
# - name: Get HCMI container logs
# run: docker logs hcmi-container
# - name: Upload artifacts for HCMI
# uses: actions/upload-artifact@v2
# with:
# name: hcmi-files
# path: hcmi-files
# check-hcmi-schema:
# if: github.actor != 'github-actions[bot]'
# needs: [build-hcmi]
# runs-on: ubuntu-20.04
# environment: build
# steps:
# - name: Checkout code HCMI
# uses: actions/checkout@v2
# - name: Download artifacts from HCMI Samples
# uses: actions/download-artifact@v2
# with:
# name: hcmi-samples
# - name: Download artifacts from HCMI
# uses: actions/download-artifact@v2
# with:
# name: hcmi-files
# - name: Download linkml
# run: |
# pip install linkml
# pip install linkml-validator
# - name: check dir
# run: ls
# - name: Run linkml schema checker
# run: bash schema/check_hcmi_linkml.sh
# build-beataml:
# if: github.actor != 'github-actions[bot]'
# needs: [build-beataml-samples,build-drugs-depmap-capture-stragglers]
# runs-on: ubuntu-20.04
# environment: build
# steps:
# - name: Checkout code BeatAML
# uses: actions/checkout@v2
# - name: Download artifacts from Beataml Samples
# uses: actions/download-artifact@v2
# with:
# name: beataml-samples
# - name: Download artifacts from Drugs
# uses: actions/download-artifact@v2
# with:
# name: additive-drugs-file-7
# - name: List files cwd
# run: ls -lah
# - name: Pull beataml image
# run: docker pull jjacobson95/beataml
# - name: Run BeatAML Container
# run: docker run -v $PWD:/tmp --name beataml-container jjacobson95/beataml python GetBeatAML.py --token ${{ secrets.SYNAPSE_TOKEN_SECRET }}
# - name: Copy files from BeatAML Container
# run: |
# mkdir beataml-files
# for file in beataml_transcriptomics.csv beataml_proteomics.csv beataml_mutations.csv beataml_drugs.tsv beataml_experiments.csv; do
# docker cp beataml-container:/usr/src/app/$file beataml-files/$file
# done
# cp beataml_samples.csv beataml-files
# - name: Get BeatAML container logs
# run: docker logs beataml-container
# - name: Upload artifact for BeatAML
# uses: actions/upload-artifact@v2
# with:
# name: beataml-files
# path: beataml-files
# check-beataml-schema:
# if: github.actor != 'github-actions[bot]'
# needs: [build-beataml]
# runs-on: ubuntu-20.04
# environment: build
# steps:
# - name: Checkout code BeatAML
# uses: actions/checkout@v2
# - name: Download artifacts from Beataml Samples
# uses: actions/download-artifact@v2
# with:
# name: beataml-samples
# - name: Download artifacts from Beataml
# uses: actions/download-artifact@v2
# with:
# name: beataml-files
# - name: Download linkml
# run: |
# pip install linkml
# pip install linkml-validator
# - name: check dir
# run: ls
# - name: Run linkml schema checker
# run: bash schema/check_beataml_linkml.sh
# # build-depmap:
# # if: github.actor != 'github-actions[bot]'
# # needs: [build-depmap-samples]
# # runs-on: ubuntu-20.04
# # environment: build
# # steps:
# # - name: Checkout code DepMap
# # uses: actions/checkout@v2
# # - name: List files cwd before
# # run: ls -lah
# # - name: Install coderdata
# # run: pip install coderdata
# # - name: Download depmap data from coder data
# # run: coderdata download --prefix depmap
# # - name: List files cwd after
# # run: ls -lah
# # - name: Copy files from DepMap Container
# # run: |
# # mkdir depmap-files
# # for file in *depmap*sv*; do
# # cp $file depmap-files/$file
# # done
# # - name: Upload artifact for DepMap
# # uses: actions/upload-artifact@v2
# # with:
# # name: depmap-files
# # path: depmap-files
# build-depmap:
# if: github.actor != 'github-actions[bot]'
# needs: [build-depmap-samples,build-drugs-depmap-capture-stragglers]
# runs-on: ubuntu-20.04
# environment: build
# steps:
# - name: Checkout DepMap
# uses: actions/checkout@v2
# # - name: Copy DepMap sample from build location.
# # run: |
# # cp build/depmap/requirements.txt .
# # cp build/depmap/requirements.r .
# # cp build/depmap/*.R .
# # cp build/depmap/*.py .
# # cp build/utils/* .
# - name: Download artifacts from DepMap (samples)
# uses: actions/download-artifact@v2
# with:
# name: depmap-samples
# - name: Download artifacts from DepMap (genes)
# uses: actions/download-artifact@v2
# with:
# name: genes-file
# - name: Download artifacts from Drugs
# uses: actions/download-artifact@v2
# with:
# name: additive-drugs-file-7
# - name: gzip drugs file
# run: gzip drugs.tsv
# - name: List files cwd
# run: ls -lah
# - name: cat reqs
# run: cat requirements.txt
# - name: Pull depmap image
# run: docker pull jjacobson95/depmap
# # - name: docker save space and stats
# # run: |
# # docker image prune -f
# # docker container prune -f
# # docker volume prune -f
# # docker network prune -f
# # docker system df
# - name: Run depmap 02-pullDepMap.R Container
# run: |
# docker run -v $PWD:/tmp/ jjacobson95/depmap Rscript /app/02-pullDepMap.R /tmp/genes.csv /tmp/depmap_samples.csv
# - name: Run depmap 02b-pullSanger.R Container
# run: |
# docker run -v $PWD:/tmp/ jjacobson95/depmap Rscript /app/02b-pullSanger.R /tmp/genes.csv /tmp/depmap_samples.csv
# # - name: Run depmap 03-createDrugFile.RContainer
# # run: |
# # docker run -v $PWD:/tmp depmap Rscript 03-createDrugFile.R CTRPv2,GDSC,gCSI,PRISM,CCLE,FIMM,NCI60
# - name: Run depmap 04-drug_dosage_and_curves.py Container
# run: |
# docker run -v $PWD:/tmp/ jjacobson95/depmap /opt/venv/bin/python /app/04-drug_dosage_and_curves.py --drugfile=/tmp/drugs.tsv.gz --curSampleFile=/tmp/depmap_samples.csv
# - name: Run depmap 01b-pullDrugs_LINCS.py Container
# run: |
# docker run -v $PWD:/tmp jjacobson95/depmap /opt/venv/bin/python /app/01b-pullDrugs_LINCS.py --drugFile /tmp/drugs.tsv.gz
# - name: Run depmap 04-pullDrugs_LINCS.py Container
# run: |
# docker run -v $PWD:/tmp jjacobson95/depmap /opt/venv/bin/python /app/04-pullDrugs_LINCS.py --drugFile /tmp/drugs.tsv.gz
# - name: Run depmap 05-LINCS_perturbations.py Container
# run: |
# docker run -v $PWD:/tmp/ jjacobson95/depmap Rscript /app/05-LINCS_perturbations.R /tmp/genes.csv /tmp/drugs.tsv.gz /tmp/depmap_samples.csv
# - name: List files cwd
# run: ls -lah
# - name: Copy files from DepMap Container
# run: |
# mkdir depmap-files
# cp depmap_* depmap-files
# - name: Upload artifacts for DepMap
# uses: actions/upload-artifact@v2
# with:
# name: depmap-files
# path: depmap-files
# check-depmap-schema:
# if: github.actor != 'github-actions[bot]'
# needs: [build-depmap]
# runs-on: ubuntu-20.04
# environment: build
# steps:
# - name: Checkout code DepMap
# uses: actions/checkout@v2
# - name: Download artifacts from DepMap Samples
# uses: actions/download-artifact@v2
# with:
# name: depmap-samples
# - name: Download artifacts from DepMap
# uses: actions/download-artifact@v2
# with:
# name: depmap-files
# - name: Download linkml
# run: |
# pip install linkml
# pip install linkml-validator
# - name: check dir
# run: ls
# - name: Run linkml schema checker
# run: bash schema/check_depmap_linkml.sh
# build-cptac:
# if: github.actor != 'github-actions[bot]'
# needs: [build-cptac-samples]
# runs-on: ubuntu-20.04
# environment: build
# steps:
# - name: Checkout CPTAC
# uses: actions/checkout@v2
# - name: Download artifacts from CPTAC
# uses: actions/download-artifact@v2
# with:
# name: cptac-samples
# - name: Download artifacts from DepMap (genes)
# uses: actions/download-artifact@v2
# with:
# name: genes-file
# - name: Copy files from build location.
# run: |
# cp build/cptac/*.py .
# cp build/cptac/requirements.txt .
# # copy build/genes.csv .
# - name: List files cwd
# run: ls -lah
# - name: Pull cptac image
# run: docker pull jjacobson95/cptac
# - name: Run CPTAC Container
# run: |
# docker run -v $PWD:/tmp jjacobson95/cptac --geneFile=/tmp/genes.csv --curSampleFile=/tmp/cptac_samples.csv
# - name: Copy files from CPTAC Container
# run: |
# mkdir cptac-files
# cp cptac_* cptac-files
# - name: Upload artifacts for CPTAC
# uses: actions/upload-artifact@v2
# with:
# name: cptac-files
# path: cptac-files
# check-cptac-schema:
# if: github.actor != 'github-actions[bot]'
# needs: [build-cptac]
# runs-on: ubuntu-20.04
# environment: build
# steps:
# - name: Checkout code CPTAC
# uses: actions/checkout@v2
# - name: Download artifacts from CPTAC Samples
# uses: actions/download-artifact@v2
# with:
# name: cptac-samples
# - name: Download artifacts from CPTAC
# uses: actions/download-artifact@v2
# with:
# name: cptac-files
# - name: Download linkml and gunzip files
# run: |
# pip install linkml
# pip install linkml-validator
# find . -type f -name '*.gz' -exec gunzip {} +
# - name: check dir
# run: ls
# - name: Run linkml schema checker
# run: bash schema/check_cptac_linkml.sh
# #placeholder
# build-mpnst:
# if: github.actor != 'github-actions[bot]'
# needs: [build-mpnst-samples]
# runs-on: ubuntu-20.04
# environment: build
# steps:
# - name: Checkout code MPNST
# uses: actions/checkout@v2
# # Placeholder
# check-mpnst-schema:
# if: github.actor != 'github-actions[bot]'
# needs: [build-mpnst]
# runs-on: ubuntu-20.04
# environment: build
# steps:
# - name: Checkout code MPNST
# uses: actions/checkout@v2
# # - name: Download artifacts from MPNST Samples
# # uses: actions/download-artifact@v2
# # with:
# # name: mpnst-samples
# # - name: Download artifacts from MPNST
# # uses: actions/download-artifact@v2
# # with:
# # name: mpnst-files
# # - name: Download linkml
# # run: |
# # pip install linkml
# # pip install linkml-validator
# # - name: check dir
# # run: ls
# # - name: Run linkml schema checker
# # run: bash schema/check_mpnst_linkml.sh
# data-visualization:
# if: github.actor != 'github-actions[bot]'
# needs: [check-hcmi-schema, check-beataml-schema, check-depmap-schema, check-cptac-schema, check-mpnst-schema]
# environment: build
# runs-on: ubuntu-20.04
# steps:
# - name: Set up R
# uses: r-lib/actions/setup-r@v2
# - name: Install R packages
# run: |
# R -e "install.packages('RColorBrewer', dependencies=TRUE, repos='http://cran.rstudio.com/')"
# R -e "install.packages('circlize', dependencies=TRUE, repos='http://cran.rstudio.com/')"
# R -e "install.packages('dplyr', dependencies=TRUE, repos='http://cran.rstudio.com/')"
# R -e "install.packages('readr', dependencies=TRUE, repos='http://cran.rstudio.com/')"
# R -e "install.packages('tools', dependencies=TRUE, repos='http://cran.rstudio.com/')"
# R -e "install.packages('ggplot2', dependencies=TRUE, repos='http://cran.rstudio.com/')"
# R -e "install.packages('reshape2', dependencies=TRUE, repos='http://cran.rstudio.com/')"
# R -e "install.packages('ComplexUpset', dependencies=TRUE, repos='http://cran.rstudio.com/')"
# - name: checkout repo content
# uses: actions/checkout@v2
# - name: Download artifacts from HCMI
# uses: actions/download-artifact@v2
# with:
# name: hcmi-files
# - name: Download artifacts from BeatAML
# uses: actions/download-artifact@v2
# with:
# name: beataml-files
# - name: Download artifacts from DepMap
# uses: actions/download-artifact@v2
# with:
# name: depmap-files
# # - name: Download artifacts from MPNST
# # uses: actions/download-artifact@v2
# # with:
# # name: mpnst-files
# - name: Download artifacts from cptac
# uses: actions/download-artifact@v2
# with:
# name: cptac-files
# # - name: Install coderdata and skip build steps
# # run: pip install coderdata
# # - name: Download cptac data from coder data
# # run: coderdata download --prefix cptac
# # - name: Download depmap data from coder data
# # run: coderdata download --prefix depmap
# # - name: Download all data from coder data
# # run: coderdata download
# - name: Create all-files directory
# run: mkdir all-files
# - name: List files cwd
# run: ls -lah
# - name: List files dataSummary dir
# run: ls -lah dataSummary
# - name: Gzip all non-samples csv files in current dir.
# run: |
# find . -type f -name '*.csv' ! -name '*samples*' -exec gzip -k "{}" +
# - name: Run Visualization01
# if: success() || failure()
# run: Rscript dataSummary/visualization01.R
# - name: Run Visualization02
# if: success() || failure()
# run: Rscript dataSummary/visualization02.R
# - name: setup data-vis dir
# if: success() || failure()
# run: |
# mkdir -p data-vis
# rsync -av --remove-source-files --include='*.png' --include='*.pdf' --include='*table.csv' --exclude='*' . data-vis/
# - name: Upload artifacts
# if: success() || failure()
# uses: actions/upload-artifact@v2
# with:
# name: data-vis
# path: data-vis
# data-visualization-save-to-docs:
# if: github.actor != 'github-actions[bot]'
# needs: [data-visualization]
# environment: build
# runs-on: ubuntu-20.04
# steps:
# - name: Checkout repo content
# uses: actions/checkout@v2
# - name: Setup Git config and pull
# run: |
# git config user.name "jjacobson95"
# git config user.email "[email protected]"
# git pull
# - name: Download artifacts from data-vis
# uses: actions/download-artifact@v2
# with:
# name: data-vis
# - name: List files cwd
# run: ls -lah
# - name: List files ..
# run: ls -lah ..
# - name: List files all
# run: ls -lah *
# - name: Move files to docs directory
# run: |
# rsync -av --remove-source-files --include='*.png' --include='*.pdf' --exclude='*' . docs/assets/stats
# rsync -av --remove-source-files --include='*table.csv' --exclude='*' . docs/_data
# # rsync -av --remove-source-files --include='*.png' --include='*.pdf' --include='*table.csv' --exclude='*' . docs/
# - name: List files in docs after moving
# run: ls -lah docs
# - name: List files in local after moving
# run: ls -lah
# - name: Git add and push new changes.
# run: |
# git add -f docs/*
# git status
# if git diff --staged --quiet; then
# echo "No changes to commit"
# else
# git commit -m "Add data visualization artifacts to docs"
# git push
# fi
# gen-stats-and-push:
# if: github.actor != 'github-actions[bot]'
# needs: [build-hcmi, build-beataml, build-depmap, build-cptac, build-mpnst]
# environment: build
# runs-on: ubuntu-20.04
# steps:
# - name: Checkout repo content
# uses: actions/checkout@v2
# - name: Setup Git config and pull
# run: |