-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
repos.txt
5151 lines (5151 loc) · 137 KB
/
repos.txt
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
gitlab/fduchate/predihood
gitlab/aroffringa/aoflagger
gitlab/aroffringa/wsclean
gitlab/chjordan/sslf
gitlab/loic.cg.rossi/pymiedap
gitlab/programgreg/tagginglatencyestimator
gitlab/dsbowen/conditional-inference
gitlab/sybreton/apollinaire
gitlab/moerman1/fhi-cc4s
gitlab/picos-api/picos
gitlab/treangenlab/vulcan
gitlab/treangenlab/emu
gitlab/etienne.behar/menura
gitlab/ENKI-portal/ThermoCodegen
gitlab/ENKI-portal/ThermoEngine
gitlab/ENKI-portal/vaporock
gitlab/mcfrith/last
gitlab/mcfrith/lamassemble
gitlab/mcfrith/paraclu
gitlab/mcfrith/tantan
gitlab/andreas.andrusch/paipline
gitlab/BioimageInformaticsGroup/openphi
gitlab/german.tischler/libmaus2
gitlab/german.tischler/biobambam2
gitlab/ampere2/metalwalls
gitlab/andrea-tango/ficos
gitlab/mcfuman/SpectraPy
gitlab/pythia-uq/pythia
gitlab/petsc/petsc
gitlab/gpagano/lensinggw
gitlab/ezlab/busco
gitlab/cirad-apps/phylostems
gitlab/jerrytheo16/exoplanet
gitlab/pipe3d/pyPipe3D
gitlab/fibreglass/pivc
gitlab/chrjan/seq-seq-pan
gitlab/project-dare/dare-platform
gitlab/clairedavies/sedbys
gitlab/rki_bioinformatics/IDeFIX
gitlab/rki_bioinformatics/HiLive2
gitlab/rki_bioinformatics/purple
gitlab/JuditGG/trumpetplots
gitlab/aceteam.kaist/ACE-Molecule
gitlab/pvst/asi
gitlab/metafundev/metafun
gitlab/ffaucher/hawen
gitlab/gmamon/MAMPOSSt
gitlab/polmag/PORTA
gitlab/chaver/choco-mining
gitlab/ags-data-format-wg/ags-python-library
gitlab/mauricemolli/petitRADTRANS
gitlab/souvlaki/thalassa
gitlab/sissopp_developers/sissopp
gitlab/mbiagetti/persistent_homology_lss
gitlab/AstroVian/bmarxiv
gitlab/mainlabwsu/bims
gitlab/multigris/mgris
gitlab/chiemotono/mdcontactcom
gitlab/astron-idg/idg
gitlab/leelamichaels/Infinity
gitlab/leelamichaels/Elysium
gitlab/leelamichaels/Burning_Arrow
gitlab/leelamichaels/Omega
gitlab/leelamichaels/Tranquillity
gitlab/emd-dev/emd
gitlab/cosmograil/PyCS3
gitlab/cosmograil/starred
gitlab/paulklemm_PHD/proteinortho
gitlab/sevecekp/sph
gitlab/gims-developers/gims
gitlab/bu_cnio/vulcanspot
gitlab/thartwig/asloth
gitlab/esa/pyxel
gitlab/jason-rumengan/pyarma
gitlab/geekysquirrel/bigx
gitlab/wpettersson/kep_solver
gitlab/vincent-sater/umigen
gitlab/ProjectRHEA/flowsolverrhea
gitlab/davidtourigny/dynamic-fba
gitlab/permafrostnet/teaspoon
gitlab/InspectorCell/inspectorcell
gitlab/vibes-developers/vibes
gitlab/ostrokach/proteinsolver
gitlab/aegge/comet-emu
gitlab/LouisLab/PiVR
gitlab/ChemBioHub/tpmap
gitlab/jesseds/apav
gitlab/eleonoraalei/exo-mercat-gui
gitlab/elsi_project/elsi_interface
gitlab/sigcorr/sigcorr
gitlab/dalton/dalton
gitlab/pyFBS/pyFBS
gitlab/casi-project/casi-3d
gitlab/casi-project/casi-2d
gitlab/joseaher/astroplotlib
gitlab/remikz/nccmp
gitlab/magnumpi/magnumpi
gitlab/dglaeser/fieldcompare
gitlab/octopus-code/octopus
gitlab/imoralc/malu-ifs-visualization-tool
gitlab/eduardo-vitral/balrogo
gitlab/binary_c/binary_c-python
gitlab/libreumg/dataquier
gitlab/Molcas/OpenMolcas
gitlab/cracklet/cracklet
gitlab/random-quintessence/random-quintessence
gitlab/remram44/taguette
gitlab/mobse/source-code
gitlab/ztzou/phydl
gitlab/RKIBioinformaticsPipelines/QCumber
github/zoometh/iconr
github/krober10nd/SeismicMesh
github/iAART/aart
github/PyPO-dev/PyPO
github/pynbody/pynbody
github/pynbody/genetIC
github/pynbody/tangos
github/toros-astro/astroalign-legacy
github/toros-astro/corral
github/lwang-astro/PeTar
github/lwang-astro/SDAR
github/cosmicrays/hermes
github/cosmicrays/DRAGON
github/tseemann/mlst
github/tseemann/snp-dists
github/tseemann/prokka
github/tseemann/snippy
github/tseemann/barrnap
github/tseemann/samclip
github/tseemann/VelvetOptimiser
github/tseemann/shovill
github/tseemann/abricate
github/Parsl/parsl
github/jbytecode/JMcDM
github/jbytecode/LinRegOutliers
github/a-slide/pycoQC
github/bbercovici/SBGAT
github/sundarjhu/2-DUST
github/artis-mcrt/artis
github/Valdes-Tresanco-MS/NbThermo
github/SISPO-developers/sispo
github/hongwanliu/DarkHistory
github/cbrueffer/tophat-recondition
github/hungyipu/Odyssey
github/vprusso/toqito
github/mrempel/geohexviz
github/Bgi-LUSH/GPMeta
github/DRMacIver/shrinkray
github/TransDecoder/wiki
github/glue-viz/glue
github/NicolasHug/Surprise
github/adcameron/ffancy
github/dzesmin/TEA
github/FergusDonnan/PAHDecomp
github/FergusDonnan/PyROA
github/FergusDonnan/Running-Optimal-Average
github/maayane/catsHTM
github/debian-tex/biber
github/debian-tex/texlive-nonbin
github/enveda/RPath
github/aboucaud/pypher
github/IftachSadeh/ANNZ
github/emunte/vaRHC
github/AntonelliLab/seqcap_processor
github/mirapy-org/mirapy
github/yrjia1015/CRISPRCasStack
github/xavierdidelot/ClonalFrameML
github/xavierdidelot/clonalorigin
github/GOVS-pack/GOVS
github/lnasellentin/DALI
github/NMBU-Data-Science/RENT
github/mingzehuang/latentcor
github/RongquanWang/ELF-DPC
github/ferdymercury/amide
github/lyf222/alpconv
github/jmcbroome/BTE
github/tkerscher/blast
github/privong/pyMCspearman
github/privong/pymccorrelation
github/tbisbas/PDFchem
github/jarvist/Julia-Phonons
github/phillippro/pexo
github/phillippro/agatha
github/watts-dev/watts
github/MarioRomeroC/Mixclask
github/sonny-harman/snowball
github/SolavLab/DuoDIC
github/konradhoeffner/hdt
github/occupationMeasurement/occupationMeasurement
github/ruanjue/wtdbg2
github/darrencroton/sage
github/GabrielaCR/AGNfitter
github/Astroua/TurbuStat
github/Astroua/SCIMES
github/jiujiezz/tsnad
github/CederGroupHub/smol
github/huchiayu/ParticleGridMapper.jl
github/Yomguithereal/talisman
github/IFB-ElixirFr/edam-browser
github/aroffringa/aartfaac2ms
github/EOSC-LOFAR/lofar-ld
github/sybila/biodivine-aeon-py
github/MolMeDB/MolMeDB
github/ElectionDataAnalysis/electiondata
github/erikhom/aida
github/mikekatz04/BOWIE
github/catherinezucker/radfil
github/kimberg/voxbo
github/Natsiopoulos/ARDL
github/jmackereth/orbit-estimation
github/spyder-ide/spyder
github/lberaldoesilva/naif
github/florian-lienhard/MM-LSD
github/MJTemple/qsogen
github/McMahonCosmologyGroup/holosim-ml
github/cole-trapnell-lab/cufflinks
github/JamesPaynter/PyGRB
github/lanzen/ampliconnoise
github/neuralgraphs/diman
github/mary77/scQcut
github/LuisScoccola/persistable
github/FredHutch/SEACR
github/pscicluna/precision
github/mdolab/pygeo
github/pavolgaj/OCFit
github/pavolgaj/ObsPlanner
github/vaexio/vaex
github/jpcoles/glass
github/jpcoles/mosaic
github/mattpitkin/lintegrate
github/mattpitkin/psrqpy
github/agombolay/ribose-map
github/wiederm/transformato
github/wonderful1/CNV-PG
github/labjg/fibmeasure
github/zblz/naima
github/odb9402/CNNPeaks
github/steven-murray/mrpy
github/steven-murray/powerbox
github/steven-murray/pydftools
github/DOnghiaGroup/MGwave
github/LBNL-ETA/MSWH
github/ParkerLab/ataqv
github/matchms/matchms
github/matchms/ms2deepscore
github/kuanrongchan/COVID19-severity
github/GeminiDRSoftware/DRAGONS
github/adriancorrendo/metrica
github/dkoslicki/TAMPA
github/giswqs/leafmap
github/giswqs/lidar
github/giswqs/geemap
github/zhoux85/scAdapt
github/sfschen/velocileptors
github/ntcockroft/STarFish
github/CFSAN-Biostatistics/SeroTools
github/ictr/covid19-outbreak-simulator
github/igvteam/igv-reports
github/SofieVG/FlowSOM
github/timstaley/voevent-parse
github/timstaley/chimenea
github/timstaley/amisurvey
github/fakedrtom/oncogemini
github/johnh2o2/cuvarbase
github/KIT-MBS/pyREX
github/iopenshell/ezSpectrum
github/tlambert03/pycudadecon
github/lydialucchesi/Vizumap
github/fred3m/toyz
github/liniguez/Insplico_simulations
github/1054/Crab.Toolkit.michi2
github/Circuitscape/Omniscape.jl
github/desihub/desitarget
github/desihub/fastspecfit
github/connor-lab/vapor
github/aiidateam/kiwipy
github/aiidateam/aiida-core
github/Social-Evolution-and-Behavior/anTraX
github/MiguelEA/nudec_BSM
github/mlarichardson/ramses2hsim
github/mlarichardson/CosmosCanvas
github/ocean-eddy-cpt/gcm-filters
github/james-m-osborn/astrosat
github/barnesgroupICL/Driftfusion
github/palaimon/ipyannotator
github/zkdtc/MLC_ELGs
github/weecology/retriever
github/fulcrumgenomics/fgbio
github/AshleySpindler/AstroVaDEr-Public
github/heuermh/dishevelled-bio
github/tloredo/CUDAHM
github/ismael-mendoza/ShapeMeasurementFisherFormalism
github/pkestene/xsmurf
github/pkestene/ramsesGPU
github/lbcb-sci/racon
github/lbcb-sci/graphmap2
github/lbcb-sci/raven
github/robashaw/libecpint
github/Gaiana/nirdust
github/CIRADA-Tools/RM-Tools
github/tensorly/viz
github/GEUS-Glaciology-and-Climate/pypromice
github/ynop/audiomate
github/medema-group/bigslice
github/kkjawz/coref-ee
github/euroargodev/argopy
github/Dulab2020/ARMT
github/cosmo-epfl/chemiscope
github/JulioHC00/PEPITA
github/carlosborca/CrystaLattE
github/JiangFangzhou/SIDM
github/schochastics/netrankr
github/schochastics/signnet
github/schochastics/graphlayouts
github/DSIMB/medusa
github/HCGB-IGTP/XICRA
github/HCGB-IGTP/spaTyper
github/benstahl92/deepSIP
github/gbernstein/gbdes
github/gbernstein/pixmappy
github/iobio-zjut/IPTDFold
github/dparks1134/RefineM
github/apertif/apercal
github/realfastvla/realfast
github/realfastvla/rfpipe
github/harrispopgen/mutyper
github/c-zhou/yahs
github/bretthandrews/flexCE
github/ranocha/SummationByPartsOperators.jl
github/rabix/cwl-format
github/najoshi/sickle
github/xmuyulab/DreamDIA-XMBD
github/yuliang419/AstroNet-Vetting
github/yuliang419/AstroNet-Triage
github/secastel/phaser
github/panoptes/POCS
github/ProSolo/prosolo
github/smog-server/OpenSMOG
github/clawpack/clawpack
github/clawpack/pyclaw
github/staphopia/staphopia-paper
github/JoeMcEwen/FAST-PT
github/nlppln/nlppln
github/BMILAB/scLINE
github/max-little/GRAPL
github/xinglunju/pyAmor
github/stillwater-sc/universal
github/DICP1810/SpotLink
github/DICP1810/ComMap
github/signaturescience/skater
github/margudo/LSSGALPY
github/perfanalytics/pose2sim
github/lantunes/cellpylib
github/pierrehoudayer/RUBIS
github/basp-group/purify
github/basp-group/Puri-Psi
github/basp-group/sopt
github/basp-group/SARA-dimensionality-reduction
github/basp-group/SARA-PPD
github/basp-group/Optical-Interferometry-Trilinear
github/ratschlab/metagraph
github/pec27/hfof
github/pec27/lizard
github/pec27/smerfs
github/dhubber/seren
github/biboyd/SALSA
github/BackmanLab/PWSpy
github/pymatting/pymatting
github/thomaspinder/GPJax
github/sbebo/joypy
github/JSB-UCLA/scPNMF
github/aomlomics/tourmaline
github/tony-travis/PIQUE
github/shihyuntang/igrins_rv
github/williamjameshandley/anesthetic
github/williamjameshandley/fgivenx
github/smandal97/Sprout
github/frank1010111/bluebonnet
github/eead-csic-compbio/get_homologues
github/jfowkes/pycutest
github/pybamm-team/liionpack
github/pybamm-team/PyBaMM
github/cancerit/alleleCount
github/VNNikolaidis/nnlib2Rcpp
github/tensorflow/tensorflow
github/tbronzwaer/raptor
github/pnsaevik/effluent
github/AarhusCosmology/connect_public
github/miRTop/mirtop
github/UCD4IDS/WaveletsExt.jl
github/VirtualPlanetaryLaboratory/atmos
github/VirtualPlanetaryLaboratory/vplanet
github/OpenMD/OpenMD
github/mpievolbio-scicomp/cancer_sim
github/anmolter/XLUR
github/cjbarrie/academictwitteR
github/discsim/frank
github/jdhenshaw/acorns
github/jdhenshaw/SCOUSE
github/jdhenshaw/scousepy
github/TPI-Immunogenetics/igmat
github/DidierMurilloF/FielDHub
github/julia-wrobel/registr
github/walaj/SeqLib
github/walaj/svaba
github/telatin/bamtocov
github/telatin/covtobed
github/telatin/qax
github/telatin/seqfu2
github/yupidevs/pactus
github/relipmoc/skewer
github/aviadpi/SparseBLS
github/SebastianBocquet/pygtc
github/sethspjohnso/satmc
github/aewallin/allantools
github/MichelleLochner/astronomaly
github/sylabs/singularity
github/kavir1698/EvoDynamics.jl
github/cov-ert/gofasta
github/skiehl/wwz
github/skiehl/lcsim
github/rickhelmus/patRoon
github/katholt/Kleborate
github/katholt/srst2
github/katholt/Kaptive
github/quinlanW/dbMisLoc
github/PaulMcMillan-Astro/GalPot
github/PaulMcMillan-Astro/Torus
github/flu-crew/smot
github/csj607/STaRS
github/surhudm/aum
github/surhudm/savitzky_golay_with_errors
github/sherpa-deproject/deproject
github/Adamtaranto/Yanagiba
github/dynamics-of-stellar-systems/dynamite_release
github/recipy/recipy
github/ester-project/ester
github/ropensci-org/pkgreviewr
github/ropensci-org/rotemplate
github/ropensci-org/roblog
github/bcbio/bcbio.variation.recall
github/bcbio/bcbio-nextgen
github/Bahler-Lab/pyphe
github/ryanhausen/fitsmap
github/tldr-group/taufactor
github/Muhammad-Arif-NUST/BVP_Pred_Unb
github/pysersic/pysersic
github/mad-lab-fau/imucal
github/mad-lab-fau/tpcp
github/icredd-cheminfo/CGRdb2
github/jonzink/EDI-Vetter
github/jonzink/EDI_Vetter_unplugged
github/anuwu/GOTHIC
github/anuwu/DAGN-Blindtest
github/ulelab/ultraplex
github/galsci/pysm
github/linsalrob/PhiSpy
github/BrianAronson/birankr
github/pydemull/activAnalyzer
github/blankhaar/PORTAL
github/bluefoxr/COINr
github/jodyphelan/TBProfiler
github/jodyphelan/tb-ml
github/rinikerlab/Ensembler
github/odlomax/spamcart-dev
github/ExaScience/elprep
github/ropensci-review-tools/srr
github/ropensci-review-tools/pkgcheck
github/ropensci-review-tools/pkgstats
github/ropensci-review-tools/roreviewapi
github/ropensci-review-tools/autotest
github/kehrlab/PopDel
github/ACCarnall/bagpipes
github/ACCarnall/SpectRes
github/mirochaj/sedop
github/mirochaj/ares
github/C-Briddon/SELCIE
github/wangchao-malab/DeepAc4C
github/astrogilda/mirkwood
github/galaxy001/pirs
github/FrancesBW/bellamy
github/maxmahlke/ssos
github/ulebreui/shark
github/felixchenier/kineticstoolkit
github/ptiede/Comrade.jl
github/ahmedmagds/GNUVID
github/cosmo-ethz/seek
github/cosmo-ethz/CosmoHammer
github/cosmo-ethz/hide
github/delve-team/delve
github/dh4gan/tache
github/dh4gan/taktent
github/dh4gan/grapus
github/dh4gan/oberon
github/opimwue/ddop
github/sing-group/seda
github/sing-group/my-brain-seq
github/TianlaiProject/tlpipe
github/jah1994/PyTorchDIA
github/SJaffa/Jplots
github/AnthonyOfSeattle/pyAscoreValidation
github/nanoporetech/megalodon
github/nanoporetech/index.html#
github/nanoporetech/medaka
github/nanoporetech/tombo
github/nanoporetech/dorado
github/nanoporetech/scrappie
github/nanoporetech/pomoxis
github/nanoporetech/flappie
github/nanoporetech/pinfish
github/nanoporetech/qcat
github/nanoporetech/ont_fast5_api
github/nanoporetech/pychopper
github/fkeruzore/panco2
github/RichardMoot/LinearOne
github/RichardMoot/GrailLight
github/jmd-dk/concept
github/arjunsavel/SImMER
github/widdowquinn/pyani
github/INCF/one_click
github/ExoSim/ExoSimPublic
github/gijut/gnucash
github/cconroy20/alf
github/cconroy20/fsps
github/MillionConcepts/lhorizon
github/ants-project/ANTs
github/cl3425/Clairvoyance
github/ashleychontos/pySYD
github/VU-BEAM-Lab/GENRE
github/mpi4jax/mpi4jax
github/StingraySoftware/HENDRICS
github/StingraySoftware/stingray
github/miracum/ahd2fhir
github/copasi/basico
github/copasi/COPASI
github/EC-Earth/ece2cmor3
github/SandoghdarLab/PiSCAT
github/beagle-dev/beagle-lib
github/fripon/freeture
github/changhoonhahn/pySpectrum
github/R-Vessel-X/SlicerRVXLiverSegmentation
github/pmelsted/pizzly
github/networkx/networkx
github/918particle/AskaryanModule
github/ESMValGroup/ESMValCore
github/ESMValGroup/ESMValTool
github/cschreib/egg
github/abs2k12/COCOA
github/siara-cc/Unishox2
github/qMRLab/qMRLab
github/agshumate/LiftoffTools
github/abeelen/powspec
github/NREL/G2Aero
github/NREL/graph-env
github/NREL/OpenOA
github/jradavenport/appaloosa
github/jradavenport/TheHammer
github/jradavenport/FBEYE
github/matthewholman/assist
github/sjteresi/TE_Density
github/Guo-Jian-Wang/colfi
github/EdoardoCarlesi/cmbeasy
github/MrOlm/drep
github/refresh-bio/whisper
github/refresh-bio/agc
github/seqcode/allo
github/seclark/RHT
github/RosettaCommons/RoseTTAFold
github/RosettaCommons/RFDesign
github/chanzuckerberg/cellxgene
github/chanzuckerberg/shasta
github/chanzuckerberg/idseq-dag
github/exoml/plan-net
github/tp2vis/distribute
github/LangeLab/SQuAPP
github/SESMG/SESMG
github/dazhwu/pydynpd
github/pierrepo/autoclassweb
github/a-griffiths/AutoSpec
github/lpantano/seqbuster
github/lpantano/seqcluster
github/pyspeckit/pyspeckit
github/DataBiosphere/wdl-parsers
github/brainglobe/bg-atlasapi
github/kimpenn/VERSE
github/benhid/Sequoya
github/AndreNicolasChene/DRAGRACES
github/LeandroOrdonez/explora-vr-dash-client
github/ropenscilabs/qcoder
github/ropenscilabs/gendercoder
github/ropenscilabs/allcontributors
github/ropenscilabs/r2readthedocs
github/eltevo/steps
github/alex-b-davis/gubas
github/gheald/rmclean
github/mcfrith/dnarrange
github/mcfrith/tandem-genotypes
github/fcs-analysis/PyScanFCS
github/fcs-analysis/PyCorrFit
github/bcerutti/Zeltron-code
github/markheckmann/OpenRepGrid.ic
github/EACcodes/TigerCI
github/jupyterlab/jupyterlab
github/zenitani/OpenMHD
github/pepamengual/UEP
github/jeremysanders/ggm
github/jeremysanders/mbproj2
github/jeremysanders/spex_to_xspec
github/jeremysanders/xspec_emcee
github/jeremysanders/dsdeproj
github/jeremysanders/contbin
github/GregoryFaust/yaha
github/GregoryFaust/samblaster
github/tardis-sn/tardis
github/tardis-sn/carsus
github/czbiohub/cerebra
github/ArnaudCassan/microlensing
github/pokynmr/ipick
github/hknd23/idcempy
github/milnus/Magphi
github/milnus/Corekaburra
github/nutjunkie/IQmol
github/Narayana-Rao/SAR-tools
github/NASA-PDS/naif-pds4-bundler
github/CavendishAstrophysics/postmortem
github/CavendishAstrophysics/anmap
github/fairdataihub/SPARClink
github/ngltr/sinaps
github/andreasmang/claire
github/klho/FLAM
github/mh-skjelvareid/synaptus
github/ska-sa/hibayes
github/ska-sa/katdal
github/ablab/TandemTools
github/ablab/nerpa
github/mkenworthy/exorings
github/open2c/pairtools
github/cython/cython
github/JuliaArrays/LazyArrays.jl
github/JuliaArrays/InfiniteArrays.jl
github/JuliaArrays/BlockArrays.jl
github/ericagol/TTVFaster
github/gxiaolab/scAllele
github/simd-everywhere/simde
github/ci-for-science/self-hosted-runners
github/PyFstat/PyFstat
github/csmsoftware/IMPaCTS
github/awsteiner/o2scl
github/awsteiner/bamr
github/danielenricocahall/elephas
github/artic-network/readucks
github/artic-network/fieldbioinformatics
github/ernewton/tellrv
github/xxsds/DYNAMIC
github/ACEnglish/truvari
github/aidenlab/juicer
github/IBM/fold2seq
github/TNOCS/csWeb
github/nlesc-dirac/sagecal
github/VIB-PSB/MINI-EX
github/epi2me-labs/mapula
github/adammoss/supernovae
github/poldracklab/nitransforms
github/poldracklab/mriqc
github/MMV-Lab/mmv_im2im
github/soedinglab/metaeuk
github/soedinglab/plass
github/soedinglab/mmseqs2
github/soedinglab/hh-suite
github/soedinglab/MMseqs2
github/soedinglab/spacepharer
github/rajewsky-lab/novosparc
github/rajewsky-lab/dropbead
github/rajewsky-lab/spacemake
github/Krona/wiki
github/marcelm/tinyalign
github/marcelm/cutadapt
github/marcelm/alignlib
github/marcelm/dnaio
github/Hoecker-Lab/atligator
github/geoelements/gns
github/biofold/ddgun
github/biofold/PhD-SNPg
github/baiwenjia/ukbb_cardiac
github/julblarod/SOPHISM
github/SeaIce-Math/SubZero
github/ArtificialStellarPopulations/ArtPop
github/intelligent-soft-robots/o80
github/travisseymour/EPICpy
github/jameschapman19/cca_zoo
github/semaphoreP/whereistheplanet
github/tariks/peakachu
github/xiaofengsong/pHisPred
github/NorwegianVeterinaryInstitute/ALPPACA
github/mifumagalli/cluster-cloc
github/faircloth-lab/phyluce
github/AlexanderLabWHOI/EUKulele
github/vincentlab/PyFR
github/antoinemarchal/ROHSA
github/moead-framework/framework
github/llrs/experDesign
github/Someone789/galax2d
github/A-Davies/LensCNN
github/j-faria/kima
github/vmplacco/linemake
github/lukapecnik/NiaAML
github/ELELAB/cancermuts
github/ELELAB/LipidDyn
github/ELELAB/CAncer-bioMarker-Prediction-Pipeline-CAMPP
github/ELELAB/RosettaDDGPrediction
github/fabiopardo/qmap
github/fabiopardo/tonic
github/KALMUS-Color-Toolkit/KALMUS
github/EpiVec/TDLM
github/statOmics/tradeSeqPaper
github/statOmics/satuRnPaper
github/QZH2022/germline_flow
github/nitadori/SCF-FDPS
github/finagle29/DBSP_DRP
github/JelfsMaterialsGroup/stk
github/florisvb/PyNumDiff
github/bio-tools/biotoolsSum
github/BenMql/coral
github/BritishGeologicalSurvey/pyvolcans
github/arcaldwell49/SimplyAgree
github/sonwell/biotools
github/dicompyler/dicompyler-core
github/RWTH-EBC/AixCaliBuHA
github/pmlmodelling/nctoolkit
github/flexible-atomic-code/fac
github/brsynth/rp2paths
github/morispi/LRez
github/theislab/scvelo
github/theislab/anndata
github/theislab/scanpy
github/gagneurlab/drop
github/HARMONI-ELT/HSIM
github/nickrodd/HDMSpectra
github/HaowenZhang/TRINITY
github/kavonrtep/dante
github/r-spatial/rgee
github/votca/xtp
github/MD-Studio/MDStudio
github/MD-Studio/cerise
github/MD-Studio/cerulean
github/ICESat2-SlideRule/paper
github/johannesulf/dsigma
github/lanl/CosmicEmu
github/lanl/PyBNF
github/lanl/scico
github/lanl/spiner
github/lanl/swiftbat_python
github/lanl/GLUE
github/exosports/homer
github/exosports/transit
github/exosports/BART
github/exosports/MARGE
github/hydrosolutions/riversCentralAsia
github/idruglab/hignn
github/nedRad88/SCALAR
github/drphilmarshall/Pangloss
github/drphilmarshall/HumVI
github/MannLabs/alphapept
github/dkirkby/gphist
github/user29A/fastrometry
github/user29A/CCDLAB
github/user29A/JPFITS
github/miguelzuma/hi_class_public
github/krab1k/ChargeFW2
github/qtltools/qtltools
github/pmelchior/des-exp-checker
github/pmelchior/shapelens
github/pmelchior/shear-stacking
github/pmelchior/pyGMMis
github/pmelchior/epsnoise
github/pmelchior/scarlet
github/pmelchior/skylens
github/pmelchior/spender
github/pmelchior/skymapper
github/vinisalazar/metaphor
github/tholoien/XDGMM
github/tholoien/empiriciSN
github/macrocosme/amber_meta
github/macrocosme/time_domain_astronomy_sandbox
github/r-spatialecology/shar
github/cameron314/concurrentqueue
github/nnssa/gallumi_public
github/sblunt/orbitize
github/enthought/mayavi
github/enthought/vpsearch
github/andyphilips/dynamac
github/UUDigitalHumanitieslab/texcavator
github/BEAST-Fitting/beast
github/samb8s/PsrPopPy
github/akleroy/phangs_imaging_scripts
github/Degiacomi-Lab/molearn
github/numpy/numpy
github/SteveMacenski/slam_toolbox
github/Nico-Curti/rFBP
github/indraniel/fqgrep
github/onnela-lab/beiwe-backend
github/bionlplab/GlaucomaNet
github/spokenlanguage/platalea
github/esteinig/nanoq
github/swiftsim/swiftsimio
github/pkugyf/MST
github/GeoffDuniam/FITS-Code-Examples
github/EbmeyerSt/GEnView
github/JieZheng-ShanghaiTech/PiLSL
github/neuroanatomy/reorient
github/BioMeCIS-Lab/OpenOmics
github/justyncw/STAR_MELT
github/jveitchmichaelis/pygadgetreader
github/EpistasisLab/tpot
github/EpistasisLab/regens
github/Julian/jsonschema
github/conchoecia/pauvre
github/jdcphysics/validation
github/stevengj/nlopt
github/jmason86/James-s-EVE-Dimming-Index-JEDI
github/ezer/PAFway
github/EddyRivasLab/hmmer
github/pytorch/vision
github/SchmollerLab/Cell_ACDC
github/fjankowsk/scatfit
github/MikeSWang/HorizonGRound
github/MikeSWang/Harmonia
github/USNavalResearchLaboratory/eispac
github/bids-standard/bids-validator
github/karlotness/adrt
github/sjbeckett/localcovid19now
github/jdidion/atropos
github/pinellolab/CRISPRitz
github/valerio-marra/CalPriorSNIa
github/maserlib/ExPRES
github/PieterjanRobbe/GaussianRandomFields.jl
github/GenomicParisCentre/toulligQC
github/fermisurfaces/IFermi
github/containers/podman
github/bezuidenhoutmc/SeeKAT
github/dsavransky/EXOSIMS
github/CrowdTruth/CrowdTruth
github/tortellini-tools/action
github/hiddenSymmetries/simsopt
github/bradkav/EarthShadow
github/bradkav/verne
github/bradkav/runDM
github/bradkav/AntiparticleDM
github/bradkav/DMRadon
github/bradkav/BlackHolesDarkDress
github/bradkav/EarthScatterLikelihood
github/bradkav/WIMpy_NREFT
github/bradkav/CEvNS
github/jpober/21cmSense
github/GaryBAYLOR/mixR
github/SpaceML/GalaxyGAN
github/vortex-exoplanet/VIP
github/Leo-Simpson/c-lasso
github/christinahedges/contaminante
github/dputhier/pygtftk
github/QuantumPlasma/SFQEDtoolkit
github/dsoave/JLS
github/conda/conda
github/conda/pycosat
github/conda/conda-package-handling
github/altjerue/paramo
github/mdlreyes/void-dwarf-analysis
github/herrsalmi/FConverter
github/jpahlers/LASR
github/QuaCaTeam/quaca
github/SciML/GlobalSensitivity.jl
github/pyplati/platipy
github/joglekara/VlaPy
github/kbarbary/nestle
github/kbarbary/sep
github/kbarbary/extinction
github/Crick-CancerGenomics/ascat
github/twopin/CAMP
github/NLESC-JCER/QMCblip
github/NLESC-JCER/EigenCuda
github/NLESC-JCER/Fortran_Davidson
github/NLESC-JCER/QMCTorch
github/jkbonfield/crumble
github/jkbonfield/io_lib
github/jkbonfield/htscodecs
github/YuRui8879/MRASleepNet
github/Pranab-JD/LeXInt
github/minkailin/stratsi
github/UcarLab/AMULET
github/Hoohm/CITE-seq-Count
github/psheehan/pdspy
github/secimTools/SECIMTools
github/AstraZeneca/kallisto
github/sonjageorgievska/CClusTera
github/Zilong-Li/PCAone
github/mourisl/Lighter
github/KathrynJones1/catwoman
github/singularityhub/sregistry
github/singularityhub/singularity-compose
github/singularityhub/singularity-hpc
github/LiesaSalzer/MobilityTransformR
github/quantling/pyndl
github/egjergo/galcem
github/sorenwacker/ProteomicsQC
github/curl/curl
github/interactivereport/OmicsView0
github/barnabytprowe/imcom
github/catboost/catboost
github/fredericlemoine/goalign
github/genotoul-bioinfo/dgenies
github/bancaditalia/black-it
github/ggciag/mandyoc
github/tfwillems/HipSTR
github/atomec-project/atoMEC
github/RadioAstronomySoftwareGroup/pyuvdata
github/wangsiwei2010/FPMVS-CAG
github/davidgardenier/frbcat
github/davidgardenier/frbpoppy
github/nemesiscode/radtrancode
github/ml-evs/matador
github/JulianKarlBauer/mechkit
github/idaholab/moose
github/YaleTHz/nelly
github/ewatercycle/era5cli
github/ToHanwei/Genome2OR
github/jeffcsauer/arcos_arcospy_information
github/iontorrent/TS
github/DrSoulain/PREVIS
github/RasmussenLab/vamb
github/AusSRC/SoFiAX
github/Extraweich/homopy
github/10XGenomics/bamtofastq
github/danielemelini/ALMA3
github/deezer/spleeter
github/chocoteam/choco-solver
github/tinglabs/scAIDE
github/felixbosco/KeplerFit
github/ksahlin/strobealign
github/HorvathLab/ReQTL
github/yanzhanglab/Graph2GO
github/gasparl/possa
github/nabeelre/NIMBLE
github/philbull/RadioFisher
github/ArgoCanada/argodata
github/LINNAE-project/SFB-Annotator
github/dpseidel/stmove
github/mariogrs/Simfast21
github/ShubhadeepSadhukhan1993/fastSF
github/opencollab/arpack-ng
github/ylab-hi/ScanITD
github/ylab-hi/ScanExitronLR
github/barricklab/pLannotate
github/brian-team/brian2
github/tobias-dv-lnu/s4rdm3x
github/msolpera/pyUPMASK
github/MRChemSoft/mrchem
github/Gabaldonlab/perSVade
github/Gabaldonlab/jloh
github/Gabaldonlab/karyon
github/Gabaldonlab/crossmapper
github/Kuifje02/vrpy
github/SWE-UniStuttgart/Qlunc
github/google/jax
github/google/caliban
github/google/best
github/volkamerlab/opencadd
github/mentatpsi/OSGenome
github/JonasRieger/ldaPrototype
github/JulianBMunoz/RelicFast
github/JulianBMunoz/21cmvFAST
github/JulianBMunoz/Zeus21
github/WatsonGroupTCD/J2suscep
github/pilon/wiki
github/rhenkin/visxhclust
github/vpc-ccg/calib
github/vpc-ccg/genion
github/vpc-ccg/svict
github/aneeshnaik/spam
github/glotzerlab/freud
github/glotzerlab/coxeter
github/glotzerlab/hoomd-blue
github/astropy/astropy
github/astropy/astroquery
github/astropy/ccdproc
github/astropy/halotools
github/astropy/astroplan
github/astropy/SPISEA
github/astropy/specutils
github/astropy/astroscrappy
github/potree/PotreeConverter
github/libdynd/dynd-python
github/blackjax-devs/blackjax
github/elixir-luxembourg/daisy
github/SYalouz/QuantNBody
github/alan-turing-institute/monitoring-ecosystem-resilience
github/alan-turing-institute/Palaeoanalytics
github/alan-turing-institute/MLJ.jl
github/alan-turing-institute/DetectorChecker
github/lamyj/odil
github/ElsevierSoftwareX/SOFTX_2020_119