-
Notifications
You must be signed in to change notification settings - Fork 1
/
nrnziprun.dat
1416 lines (1027 loc) · 17.5 KB
/
nrnziprun.dat
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
2VN 139654
5chan 3673
verify_graph_()
objref save_window_[1]
graphList[0].remove_all
graphList[1].remove_all
objref VoltageClamp
load_file("fig3a.ses")
run()
verify_graph_()
ACh_ModelDB 149739
demo_run()
verify_graph_()
AkemannEtAl2009 123453
run_model(prot)
verify_graph_()
AkemannKnopfelPurkinje_cell_model 80769
restart("shortRun")
verify_graph_()
Alle_et_al_2009 135838
AnwarEtAl2010 138382
Arsiero_et_al2007 83590
/* beginscript
sed 's/mustart = -0.400/mustart = 0.800/
s/sigmastart = 0.064/sigmastart = 0.128/
' mylibs/TFparams.hoc > temp.tmp
mv temp.tmp mylibs/TFparams.hoc
endscript */
AshhadNarayanan2013 150551
BGnet 127388
BahlEtAl2012 146026
BahmerLangner2007 87454
chdir("NEURON_Chopper_Network_Simulation")
xopen("mosinit.hoc")
runhere()
verify_graph_()
BalbiEtAl2013 151443
Basketcell 114047
tstop=1e1
xopen("fig6.hoc")
verify_graph_()
BerzThetaGamm2013 144589
BianchiEtAl2013 151126
BiddellJohnson2013 150556
Branch_Point_Tapering 146509
Branco_2010 140828
CA1_Aged 119266
run()
verify_graph_()
CA1_Gomez_2011 144450
CA1_abeta 87284
CA1_multi 20212
chdir("mechanism")
xopen("mosinit.hoc")
unix_spike_atten_hof()
verify_graph_()
CA3Atrophy 147867
CNModel_May2013 150024
CN_Bushy_Stellate 37857
run()
verify_graph_()
CN_Pyr 37856
runiv()
verify_graph_()
Ca1_Bianchi 143719
CaT 19920
run()
verify_graph_()
CanavierLandry2006 84612
restart_("fig4b1")
tstop=1000
run()
verify_graph_()
CarvalhoBuonomano 125689
CasaleEtAl2011 143635
Channels_NEW 18500
duration = 2
restart("demo_ampa")
verify_graph_()
Chirp 147539
Chloride_Model 148253
CoHCNS2000 19747
run()
verify_graph_()
CruzEtAlS_cellModel 117459
run()
verify_graph_()
D2modulation 98005
run()
verify_graph_()
DAcomparison 167772
//do not run Tried "initDialog.unmap(1)" - didnt work. Need to change archive
DAmodel 141272
//do not run Problem is that Vbox.dialog() steals the focus (complex to fix)
DG_BC 140789
DLGN_NEW 3343
restart("Fspin")
init()
run()
verify_graph_()
DRG_Devor 140038
DendroDendriticInhibition 116094
load_file("mosinit.hoc")
run_experiment("fig2ace")
tstop=40
init()
run()
verify_graph_()
run_experiment("fig1")
tstop=1
init()
run_fig1bde()
verify_graph_()
DiFrancescoNoble1985 144520
DynBasIrregSpNMDA 82784
load_file("runShort.hoc")
verify_graph_()
ElectricallycoupledRetziusneurons 120910
run()
verify_graph_()
EurJNeurosci2000 19491
verify_graph_()
FFI 124291
stim.amp = 0.1
runa()
verify_graph_()
FRB 125857
FRBGamma 144579
FV 138082
FerranteEtAl2008 119283
use_mcell_ran4(1)
runi()
verify_graph_()
Figure5 140471
Fineberg_et_al_2012 145672
FleidervishEtAl2010 136715
FoustEtAl2011 143442
GPSingleCompartment 122329
{ load_file("withSKsoma.hoc") init() }
tstop = 500
run()
verify_graph_()
GPeNeuronKitano 143100
Ga_demo 97756
xopen("show_start.hoc")
verify_graph_()
GeneralizedCarnevaleHinesScheme 115357
makeplusplus()
verify_graph_()
Golgi_cell 112685
run()
verify_graph_()
Golgi_cell_NaKATPAse 127021
Gow_Devaux_2009 122442
load_file("DCM_0.6um_axon.ses")
newPlotV()
run()
verify_graph_()
GrC 116835
tstop=10
run()
verify_graph_()
GranuleCell 46839
verify_graph_()
HAGPA 113997
restart("demo_HPGA_non-saturating.hoc")
tstop=30000
run()
verify_graph_()
HB 2798
run_c()
verify_graph_()
HBplusIh 141063
//do not run Problem is that Vbox.dialog() steals the focus (complex to fix)
HCN2k 19176
experiment1()
verify_graph_()
HFO 114735
run()
verify_graph_()
HHcn 127992
HallermannEtAl2012 144526
HayEtAl2013 149100
Hines2011 137845
HinesCarnevaleJNM2007 96444
chdir("ring")
load_file("ringpar.hoc")
verify_graph_()
Hipp_paper_code 123815
tstop=5
newPlotV()
run()
verify_graph_()
Hossain 54903
{load_file("Fig6-B.ses")}
run()
verify_graph_()
HuEtAl2009 123897
xopen("experiment/Pyramidal_Main.hoc")
freePlay()
tstop=20
run()
verify_graph_()
IcaT 3533
run()
verify_graph_()
Ih_current 144541
JohnsonMcIntyre2008 114685
short_run()
verify_graph_()
JonesEtAl2009 136803
KampaStuart2006 108458
AP3_toq = 1
set_stim()
run()
verify_graph_()
Katona_et_al 136176
KerrEtAl2013 147366
//do not run
KimEtAl2013 150288
KoendgenEtAl2008 118631
use_mcell_ran4(1)
graph_and_run()
verify_graph_()
Kopp-Scheinpflug2011 139657
Kourennyi-etal2004 64216
verify_graph_()
KubotaEtAl2011 140299
KuznetsovaEtAl2010 127507
L5bPCmodelsEH 139653
LFP 136310
LGMD 144007
LavzinEtAl2012 146565
LetzkusEtAl2006 108459
run()
verify_graph_()
LindsayEtAl2005 129149
Liu-Kourennyi_2004 64228
restart("0222AP_BR.ses")
run()
verify_graph_()
LuthmanEtAl2011 144523
objref test_graph_
test_graph_ = new Graph()
graphList[0].append(test_graph_)
test_graph_.addexpr("v(.5)", 1, 1, 0.8, 0.9, 2)
tstop=10
init()
run()
verify_graph_()
MRGaxon 3810
stdinit()
continuerun(2)
cvode_active(1)
continuerun(150)
verify_graph_()
MSN2009 121060
Exec()
verify_graph_()
MSO_Zhouetal_2005 53869
//takes a long time
MT-GC 97263
run()
verify_graph_()
MahonEtAl2000 150621
MasurkarChen2011 140462
McCormickEtAl2007YuEtAl2008 135839
MiglioreMcTavish2013 149415
MoradiEtAl2012 145836
ParmFitnessGui[0].run()
verify_graph_()
MultiChirp 147578
Munro_Kopell_corticalcontrol 136309
MyFirstNEURON 3808
xstatedum[2]=1
new_experiment(3)
run()
verify_graph_()
NCnote 64259
use_mcell_ran4(1)
run()
verify_graph_()
NEURON-2008b 113446
tstop=500
tstop_changed()
run()
verify_graph_()
NMDA_Mg 50207
run()
verify_graph_()
NN_kole 114394
run()
verify_graph_()
NQS_with_example 97874
//moddir modeldb
verify_graph_()
NTW_NEW 3670
restart("Fig5A")
run()
verify_graph_()
Nakano_FICN_model 151458
NarayananJohnston2010 147538
NegroniLascano 126467
Neural_Computation 18197
restart("demo_glutamate_neuralcomputation")
verify_graph_()
NeuroCubeWeblink 147487
NeuroMorph 138273
OLMmodel 28316
verify_graph_()
OverstreetEtAl2013 147460
PFCcell 144089
PalmerStuart2009 120798
ParekhAscoli2013 148644
Poleg-PolskyDiamond2011 139150
PospischilEtAl2008 123623
run()
verify_graph_()
PowersEtAl2012 143671
PublioEtAl2009 124063
/*beginscript
sed 's/tstop = 6500/tstop = 100/' session.ses > temp.tmp
mv temp.tmp session.ses
endscript*/
tstop=10
run()
verify_graph_()
PurkReductionOnLine 149000
Pyramidal_STDP_Gomez_Delgado_2010 144482
R859C 87585
verify_graph_()
ROD 95870
run()
verify_graph_()
ReConv 139883
Recruitnet 135903
Ribbon 50997
restart("makefig7")
verify_graph_()
RichyandStarfish 102288
fig9A1()
verify_graph_()
RomaniEtAl2013 147757
RoyeckEtAl2008 115356
short_test()
verify_graph_()
SeqLearn 147461
//do not run Minimum time would be 1/2 hr default time is about 8.3 hours
SFS-IPS-WM-network 98017
//do not run
SNRCA1 19746
run()
verify_graph_()
SPUD_NRN_MySQL_20091026 97868
//do not run
SRandCRnet 135902
SS-cortex 113732
use_mcell_ran4(1)
suprathresh()
tstop=50
tstop_changed()
run()
verify_graph_()
SSC_model 114637
SYN_NEW 18198
restart("release")
run()
verify_graph_()
Sbpap_code 125385
Schizophr 138205
ShepherdBrayton1979 144385
ShortTermPlasticityMFGRC_Nieus2006 128446
ShuEtAl20062007 135787
Skolnik_python_WinogradEtAl2008 144376
SpaceClampDemo 110560
xopen("calcium.hoc")
fig1b()
objref gg, rvp_
gg = new Graph()
gg.size(-250,250,-80, 80)
rvp_ = new RangeVarPlot("v")
a_dend_3_0_0_0_1_1_1 rvp_.begin(1)
a_dend_1_0_1_0_1_1_1 rvp_.end(1)
rvp_.origin(9.96606)
gg.addobject(rvp_, 2, 1, 0.8, 0.9)
verify_graph_()
SpineCaModel 116769
verify_graph_()
StiefelSejnowskiCode 93398
restart("shortRun")
verify_graph_()
Stochastic 64195
//do not run problem due to randomness and takes too long due to failure to set steps_per_ms consistent with dt
ThomasPetrou2013 149174
TimeScales-master 150284
//do not run Mattione Le Novere missing _run_me.hoc in parallel model
Traub2003 20756
pyr3_ = new pyr3( 21 )
setFig2()
tstop=100
run()
verify_graph_()
Uebachs-et-al_2010 125152
V1_PFC_ModelDB 144553
VNO 64212
Vierling-ClaassenEtAl2010 141273
VladimirovTuTraub2012 144401
VladimirovTuTraub2013 150446
WC 76879
tstop=20
run1(1)
verify_graph_()
WDR-Model 128559
Welday_et_al 129067
Welie-Wadman-JPhysiol-subiculum 82364
reg_20()
verify_graph_()
Wimmer-et-al2009 123927
XiEtal2013 150538
YuEtAl2012 144570
YuEtAlPNAS2007 135898
ZhouColburn2010 143114
a2dmodeldb 150245
tstop=100
init()
run()
verify_graph_()
acker_antic 117207
restart("AckerAnticBasalBackprop")
RunAll()
verify_graph_()
alzheimer 144976
amirdevor03 51022
verify_graph_()
anderson 3812
verify_graph_()
anetdemo 144586
anyas2005 53435
// disregard. mod files in subdirectory
aradi1999 116740
{init() run()}
verify_graph_()
arm1d 144538
aubieEtAl2012 144511
b 62285
verify_graph_()
b04feb12 35358
verify_graph_()
b07dec17 105507
/* beginscript
sed 's/batch_flag=0/batch_flag=1/
s/tstop = 1e3/tstop = 20/' batch_.hoc > temp.tmp
mv temp.tmp batch_.hoc
endscript */
load_file("batch_.hoc")
verify_graph_()
b07dec27_20091025 106891
tstop=10
runeg()
verify_graph_()
b08dec23 116830
/*beginscript
sed 's/tstop = 100/tstop = 20/' init.hoc > temp.tmp
mv temp.tmp init.hoc
endscript*/
// takes too long and no gout data
//load_file("init.hoc")
//verify_graph_()
b09jan08 116838
/* beginscript
sed 's/^showdemo=1/showdemo=0/' mosinit.hoc > temp.tmp
mv temp.tmp mosinit.hoc
endscript */
tstop=10
run()
verify_graph_()
b09jan13 116862
verify_graph_()
b1 62266
run()
verify_graph_()
b11aug17 140881
//do not run Lytton model takes too long to run and complex to edit
ba 62284
run()
verify_graph_()
baccus98 3807
fig6()
verify_graph_()
badoual_stdp 116096
tstop=1
init()
run()
verify_graph_()
baker05 85112
verify_graph_()
bbmit 2733
verify_graph_()
beelerReuter 97863
verify_graph_()
bfb-etal-2012 151404
bfstdp 64261
//do not run takes too long
bogaard2009 121259
load_file("homrun.hoc")
verify_graph_()
boosting 7386
runc()
verify_graph_()
bpap 144490
brill77 9848
verify_graph_()
bulbNet 2730
//launch but do not run
ca1 2796
run()
verify_graph_()
ca3-summ 118098
newPlotV()
run()
Graph[0].exec_menu("View = plot")
verify_graph_()
ca3-synresp 137259
ca3_2002 20007
verify_graph_()
ca3_db 3263
runb()
verify_graph_()
ca3b 101629
tstop=250
run()
verify_graph_()
ca3ihdemo 151282
ca_rgc 3457
run()
verify_graph_()
ca_t_lva 53893
restart("fig3")
verify_graph_()
canavier1999 6763
run()
verify_graph_()
cardiac1998 3800
verify_graph_()
cdlab 3434
init()
gr.showAllTimeGraphs=1
tstop=1
run()
verify_graph_()
chain_1d 94321
tstop=10
init()
run()
verify_graph_()
chen2002 3793
restart("fig5a")
verify_graph_()
cortex 3817
restart("demo_PY_RS")
run()
verify_graph_()
crane2001 3785
verify_graph_()
ctng-2013-10-05 146950
ctxnet 52034
run_short()
verify_graph_()
dLGN_modelDB 140249
damodel 83547
run()
verify_graph_()
db 3289
run()
verify_graph_()
demo 22203
//disregard cannot be run in batch mode
dendgeom 18738
verify_graph_()
dendre 17663
restart("re1_cc")
run()
verify_graph_()
dendritic_complexity 147514
dendtc 279
restart("tc1_cc")
run()
verify_graph_()
dentate_gyrus 124513
dentategyrusnet2005 51781
load_file("testnet.hoc")
verify_graph_()
destexhe_benchmarks 83319
//disregard NEURON in subdirectory
develop 126814
dgbc 3801
run()
verify_graph_()
djurisic2008 136026
dm1_pn_model 118662
proc run(){}
restart_("figure_4a_cell1")
newPlotV()
proc run() { stdinit() continuerun(tstop) }
run()
verify_graph_()
dodge73 3805
verify_graph_()
eaps 84589
//ignore sim in subdirectory
// have not been able to run yet
////moddir mod
// load_file("hoc/src/refs.hoc")
// load_file("cells/d151.hoc")
// load_file("hoc/src/file_util.hoc")
// load_file("hoc/src/main.hoc")
ephaptic 3676
xopen("fig2.hoc")
verify_graph_()
fdemo 138379
mytstop=0.1e3
tstop=mytstop
finish_run()
verify_graph_()
fh 3507
verify_graph_()
fietkiewicz2011 139418
fink2000 125745
fluct 8115
use_mcell_ran4(1)
run()
verify_graph_()
fs_internrn_neuron 113435
init()
run()
verify_graph_()
gap-modeldb 43039
rung()
verify_graph_()
gaspiriniEtAl2004 44050
runm()
verify_graph_()
gc-1.1 95960
fig6a()
verify_graph_()
geigerEtAl1997 19022
run()
verify_graph_()
genet_PC 147218
geomindu 19214
Main(5)
run()
verify_graph_()
giuglianoEtAl2007 112086
use_mcell_ran4(1)
restart("metal()")
run()
verify_graph_()
gludiff 3658
glubes2D()
run()
verify_graph_()
gp 105385
loadfig9()
tstop=100
run()
verify_graph_()
granule 19591
restart("fig1a")
verify_graph_()
restart("fig2a1")
verify_graph_()
restart("fig2a2")
verify_graph_()
restart("fig2a3")
verify_graph_()
restart("fig2b1")
verify_graph_()
restart("fig2b2")
verify_graph_()
restart("fig2b3")
verify_graph_()
grid 150239
h_cno 3332
run()
verify_graph_()
h_pg 3665
run()
verify_graph_()
h_tc 3684
run()
verify_graph_()
herzogEtAl01 86537
restart_("fig4")
verify_graph_()
hh 5426
verify_graph_()
{restart() load_file("hhk.ses") run() verify_graph_()}
{restart() load_file("hhna.ses") run() verify_graph_()}
{restart() load_file("hhkfit.ses") run() verify_graph_()}
{restart() load_file("hhnafit.ses") run() verify_graph_()}
{restart() load_file("hhna.ses") run() verify_graph_()}
hines2001 53451
restart("fig7")
verify_graph_()
hines2004 53437
run()
verify_graph_()
hoppy 144549
hpcdemo 139421
ihmodel 8284
run()
verify_graph_()
inhibnet 21329
//do not run random seed different every time
izh 39948
p(5)
verify_graph_()
joyner80 9853
verify_graph_()
k_interneurons 20015
run()
verify_graph_()