-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathall_questions.json
3855 lines (3808 loc) · 233 KB
/
all_questions.json
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
[
{
"url": "https://api.github.com/repos/tripal/tripal/issues/822",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/822/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/822/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/822/events",
"html_url": "https://github.com/tripal/tripal/issues/822",
"id": 398784821,
"node_id": "MDU6SXNzdWUzOTg3ODQ4MjE=",
"number": 822,
"title": "Questions about GFF loading and alignment sequence",
"user": {
"login": "songtaogui",
"id": 14274330,
"node_id": "MDQ6VXNlcjE0Mjc0MzMw",
"avatar_url": "https://avatars0.githubusercontent.com/u/14274330?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/songtaogui",
"html_url": "https://github.com/songtaogui",
"followers_url": "https://api.github.com/users/songtaogui/followers",
"following_url": "https://api.github.com/users/songtaogui/following{/other_user}",
"gists_url": "https://api.github.com/users/songtaogui/gists{/gist_id}",
"starred_url": "https://api.github.com/users/songtaogui/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/songtaogui/subscriptions",
"organizations_url": "https://api.github.com/users/songtaogui/orgs",
"repos_url": "https://api.github.com/users/songtaogui/repos",
"events_url": "https://api.github.com/users/songtaogui/events{/privacy}",
"received_events_url": "https://api.github.com/users/songtaogui/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 3,
"created_at": "2019-01-14T08:16:52Z",
"updated_at": "2019-01-18T14:30:26Z",
"closed_at": null,
"author_association": "NONE",
"body": "<!---\r\nINSTRUCTIONS: Our intent is to use github as an open forum to help community members connect.\r\nIf you are looking to do any of the following, you are in the right place! and Thank You!\r\n - Ask for help/documentation/clarification of Tripal Functionality and Site Building/Management\r\n - Discuss controlled vocabulary terms for your data\r\n - Ask for input on site/module design questions\r\n - State your intent to develop a specific extension module\r\n - Really any type of discussion or question -we want to hear from you!\r\n--->\r\n\r\nHi,\r\nI have some custom descriptions for genes recorded in the GFF files as \"description=XXXXXX\" or \"product=XXXXXXX\", is it possible to show these information in the result-table of \"search gene\" or \"search sequence\" tools ?\r\nBesides, the `mRNA` sequences from the alignment failed to wrapped (concatenated by \" \" rather than \"\\n\" every 50 characters), while manually uploaded sequences and `CDS` sequences from alignment were correctly wrapped, how to fix that? \r\n\r\nThank you"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/812",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/812/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/812/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/812/events",
"html_url": "https://github.com/tripal/tripal/issues/812",
"id": 395423937,
"node_id": "MDU6SXNzdWUzOTU0MjM5Mzc=",
"number": 812,
"title": "Tried to import GO get type_id violates not-null constraint for goslim_agr",
"user": {
"login": "srobb1",
"id": 1072991,
"node_id": "MDQ6VXNlcjEwNzI5OTE=",
"avatar_url": "https://avatars0.githubusercontent.com/u/1072991?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/srobb1",
"html_url": "https://github.com/srobb1",
"followers_url": "https://api.github.com/users/srobb1/followers",
"following_url": "https://api.github.com/users/srobb1/following{/other_user}",
"gists_url": "https://api.github.com/users/srobb1/gists{/gist_id}",
"starred_url": "https://api.github.com/users/srobb1/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/srobb1/subscriptions",
"organizations_url": "https://api.github.com/users/srobb1/orgs",
"repos_url": "https://api.github.com/users/srobb1/repos",
"events_url": "https://api.github.com/users/srobb1/events{/privacy}",
"received_events_url": "https://api.github.com/users/srobb1/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 5,
"created_at": "2019-01-03T00:27:53Z",
"updated_at": "2019-01-06T16:59:48Z",
"closed_at": "2019-01-03T21:31:03Z",
"author_association": "MEMBER",
"body": "\r\nI have a brand spanking new tripal3 install with the rapid installer. I replaced the tripal module dir with the github repo today.\r\n\r\nThe very first thing I have tried is to import GO. I am getting an error. Should I have done something else before this. What did I miss???\r\n\r\nIs this critical? Or something I can ignore?\r\n\r\nThanks,\r\nSofia\r\n\r\n```\r\nRunning 'OBO Vocabulary Loader' importer\r\nNOTE: Loading of file is performed using a database transaction.\r\nIf it fails or is terminated prematurely then all insertions and\r\nupdates are rolled back and will not be found in the database\r\n\r\n[site http://default] [TRIPAL ERROR] [TRIPAL_CHADO] chado_select_record: the foreign key definition for 'dbxref_id' on table 'cvterm' returned no results where the definition supplied was Array( [db_id] => Array ( [name] => NCIT ) [accession] => C25693)\r\n[site http://default] [TRIPAL ERROR] [TRIPAL_CHADO] chado_select_record: the foreign key definition for 'dbxref_id' on table 'cvterm' returned no results where the definition supplied was Array( [db_id] => Array ( [name] => rdfs ) [accession] => comment)\r\nDownloading URL http://purl.obolibrary.org/obo/go.obo, saving to /tmp/obo_dgoYXf\r\nStep 1: Preloading File /tmp/obo_dgoYXf...\r\nFound the following namespaces: gene_ontology, biological_process, molecular_function, cellular_component, external.\r\nStep 2: Examining relationships...\r\nStep 3: Loading type defs...: 344,098,144 bytes.\r\nStep 4: Loading terms... %. Memory: 344,102,064 bytes.\r\nCannot add subset, \"goslim_agr\" to term: GO:0000003. ERROR: ChadoRecord::insert(). Could not insert a record into the table, cvtermprop, with the following values: Array\r\n(\r\n [cvterm_id] => 2982\r\n [type_id] =>\r\n [value] => goslim_agr\r\n)\r\n. ERROR: SQLSTATE[23502]: Not null violation: 7 ERROR: null value in column \"type_id\" violates not-null constraint\r\nDETAIL: Failing row contains (569, 2982, null, goslim_agr, 0)..\r\n[site http://default] [TRIPAL ERROR] [TRIPAL_JOB] Cannot add subset, \"goslim_agr\" to term: GO:0000003. ERROR: ChadoRecord::insert(). Could not insert a record into the table, cvtermprop, with the following values: Array( [cvterm_id] => 2982 [type_id] => [value] => goslim_agr). ERROR: SQLSTATE[23502]: Not null violation: 7 ERROR: null value in column \"type_id\" violates not-null constraintDETAIL: Failing row contains (569, 2982, null, goslim_agr, 0)..\r\n```"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/800",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/800/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/800/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/800/events",
"html_url": "https://github.com/tripal/tripal/issues/800",
"id": 392333973,
"node_id": "MDU6SXNzdWUzOTIzMzM5NzM=",
"number": 800,
"title": "Questions about upgrade from Tv2 to Tv3",
"user": {
"login": "srobb1",
"id": 1072991,
"node_id": "MDQ6VXNlcjEwNzI5OTE=",
"avatar_url": "https://avatars0.githubusercontent.com/u/1072991?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/srobb1",
"html_url": "https://github.com/srobb1",
"followers_url": "https://api.github.com/users/srobb1/followers",
"following_url": "https://api.github.com/users/srobb1/following{/other_user}",
"gists_url": "https://api.github.com/users/srobb1/gists{/gist_id}",
"starred_url": "https://api.github.com/users/srobb1/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/srobb1/subscriptions",
"organizations_url": "https://api.github.com/users/srobb1/orgs",
"repos_url": "https://api.github.com/users/srobb1/repos",
"events_url": "https://api.github.com/users/srobb1/events{/privacy}",
"received_events_url": "https://api.github.com/users/srobb1/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 11,
"created_at": "2018-12-18T21:01:21Z",
"updated_at": "2018-12-21T19:44:24Z",
"closed_at": "2018-12-21T19:44:23Z",
"author_association": "MEMBER",
"body": "CentOS 7.2.15.11\r\ntripal-7.x-2.1-beta2 --> tripal-7.x-3.0-rc3\r\n\r\nWe are getting errors pretty early on in our upgrade. We are following the instructions on [tripal.info](https://tripal.readthedocs.io/en/latest/user_guide/install_tripal/upgrade_from_tripal2.html).\r\n\r\nWhen we disable tripal-core we find that we are missing many views. What should we do to repair this?\r\n\r\nThank you,\r\nSofia\r\n\r\n\r\n```\r\n[drupal@cuttingclass-test html]$ drush pm-disable tripal_core\r\nThe following theme is missing from the file system: <em [warning]\r\nclass=\"placeholder\">tripal</em>. For information about how to fix\r\nthis, see <a href=\"https://www.drupal.org/node/2487215\">the\r\ndocumentation page</a>. bootstrap.inc:1143\r\nThe following extensions will be disabled: tripal_core, chado_search, tripal_views, tripal_db, tripal_cv, tripal_analysis, tripal_organism, tripal_feature, tripal_analysis_blast, tripal_bulk_loader, tripal_daemon\r\nDo you really want to continue? (y/n): y\r\ntripal_organism was disabled successfully. [ok]\r\ntripal_analysis_blast was disabled successfully. [ok]\r\ntripal_bulk_loader was disabled successfully. [ok]\r\ntripal_cv was disabled successfully. [ok]\r\ntripal_daemon was disabled successfully. [ok]\r\ntripal_db was disabled successfully. [ok]\r\ntripal_core was disabled successfully. [ok]\r\ntripal_feature was disabled successfully. [ok]\r\ntripal_views was disabled successfully. [ok]\r\ntripal_analysis was disabled successfully. [ok]\r\nchado_search was disabled successfully. [ok]\r\nUnable to find a view by the name of 'tripal_bulk_loading_jobs'. [error]\r\nUnable to disable this view.\r\nUnable to find a view by the name of 'tripal_bulk_loader_templates'. [error]\r\nUnable to disable this view.\r\nUnable to find a view by the name of 'tripal_feature_user_feature'. [error]\r\nUnable to disable this view.\r\nUnable to find a view by the name of 'tripal_feature_admin_features'.[error]\r\nUnable to disable this view.\r\nUnable to find a view by the name of [error]\r\n'tripal_organism_user_organisms'. Unable to disable this view.\r\nUnable to find a view by the name of [error]\r\n'tripal_organism_admin_organisms'. Unable to disable this view.\r\nUnable to find a view by the name of 'tripal_analysis_user_analyses'.[error]\r\nUnable to disable this view.\r\nUnable to find a view by the name of [error]\r\n'tripal_analysis_admin_analyses'. Unable to disable this view.\r\nUnable to find a view by the name of 'tripal_cv_admin_cvs'. Unable to[error]\r\ndisable this view.\r\nUnable to find a view by the name of 'tripal_cv_admin_cvterms'. [error]\r\nUnable to disable this view.\r\nUnable to find a view by the name of 'tripal_db_admin_dbs'. Unable to[error]\r\ndisable this view.\r\nUnable to find a view by the name of 'tripal_db_admin_dbxrefs'. [error]\r\nUnable to disable this view.\r\n```"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/789",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/789/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/789/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/789/events",
"html_url": "https://github.com/tripal/tripal/issues/789",
"id": 390179160,
"node_id": "MDU6SXNzdWUzOTAxNzkxNjA=",
"number": 789,
"title": "Is it (still) possible to join Chado data and Drupal field data in Drupal views?",
"user": {
"login": "guignonv",
"id": 7290244,
"node_id": "MDQ6VXNlcjcyOTAyNDQ=",
"avatar_url": "https://avatars1.githubusercontent.com/u/7290244?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/guignonv",
"html_url": "https://github.com/guignonv",
"followers_url": "https://api.github.com/users/guignonv/followers",
"following_url": "https://api.github.com/users/guignonv/following{/other_user}",
"gists_url": "https://api.github.com/users/guignonv/gists{/gist_id}",
"starred_url": "https://api.github.com/users/guignonv/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/guignonv/subscriptions",
"organizations_url": "https://api.github.com/users/guignonv/orgs",
"repos_url": "https://api.github.com/users/guignonv/repos",
"events_url": "https://api.github.com/users/guignonv/events{/privacy}",
"received_events_url": "https://api.github.com/users/guignonv/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 5,
"created_at": "2018-12-12T11:17:43Z",
"updated_at": "2019-01-09T09:46:45Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "branch: Tripal 3\r\n\r\nI tried to create a Drupal view that would allow me to display both data from Chado and Drupal on a same page without any success. On Tripal 2, this could be achieved using Drupal views relationship between Drupal node and the corresponding Chado table. On Tripal 3, I didn't find the possibility to join those 2 sides.\r\n\r\nI can only either create a view on \"Chado stock\" or create a view on \"Accession\" for instance, but none of them can \"reach the other side of the database\".\r\n\r\nIf you create a \"Chado stock\"-based view, how could you provide a link to the corresponding Drupal entity?\r\n\r\nIf you create a \"Accession\"-based view (\"Accession\" being the Tripal entity that is related to a type of Chado stock), how could you display the related organism common name (stock.organism_id->organism.organism_id, organism.common_name) for each record or a specific picture (stock.stock_id->stock_dbxref.stock_id/dbxref_id->dbxref.dbxref_id/db_id->db.db_id by filtering on a given db.name)?\r\n\r\nI used to do it a lot on my Tripal 2 views but this issue prevents me from migrating to Tripal 3 at the moment.\r\n"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/766",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/766/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/766/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/766/events",
"html_url": "https://github.com/tripal/tripal/issues/766",
"id": 384746744,
"node_id": "MDU6SXNzdWUzODQ3NDY3NDQ=",
"number": 766,
"title": "functional modules v3.0",
"user": {
"login": "kyrenya",
"id": 43243429,
"node_id": "MDQ6VXNlcjQzMjQzNDI5",
"avatar_url": "https://avatars1.githubusercontent.com/u/43243429?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kyrenya",
"html_url": "https://github.com/kyrenya",
"followers_url": "https://api.github.com/users/kyrenya/followers",
"following_url": "https://api.github.com/users/kyrenya/following{/other_user}",
"gists_url": "https://api.github.com/users/kyrenya/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kyrenya/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kyrenya/subscriptions",
"organizations_url": "https://api.github.com/users/kyrenya/orgs",
"repos_url": "https://api.github.com/users/kyrenya/repos",
"events_url": "https://api.github.com/users/kyrenya/events{/privacy}",
"received_events_url": "https://api.github.com/users/kyrenya/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 10,
"created_at": "2018-11-27T11:20:52Z",
"updated_at": "2018-11-27T17:22:31Z",
"closed_at": null,
"author_association": "NONE",
"body": "Hi there! \r\nI'm trying to follow the manual for functional annotation: \r\nhttps://tripal.readthedocs.io/en/latest/user_guide/example_genomics/func_annots/setup.html\r\n\r\nWhen checking for new fields in STructure--> Tripal Content Types, the manual says check manage fields in mRNA but the image shows the fields in Gene. Anyway, when I do it in both places, I don't see anything similar to the example. No new fields related to functional modes showing. \r\nBut, if I go to \r\nStructure --> Content Types: \r\n![image](https://user-images.githubusercontent.com/43243429/49078613-67e4be00-f236-11e8-83fc-79d933430cf4.png)\r\n\r\nI find there content for Blast and Interpro. \r\n\r\nIs this how its supposed to be? \r\n\r\n Thanks.\r\n"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/761",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/761/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/761/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/761/events",
"html_url": "https://github.com/tripal/tripal/issues/761",
"id": 382940184,
"node_id": "MDU6SXNzdWUzODI5NDAxODQ=",
"number": 761,
"title": "GFF file upload keeps stalling at 37% of parsed lines",
"user": {
"login": "mdhar1980",
"id": 18684260,
"node_id": "MDQ6VXNlcjE4Njg0MjYw",
"avatar_url": "https://avatars3.githubusercontent.com/u/18684260?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mdhar1980",
"html_url": "https://github.com/mdhar1980",
"followers_url": "https://api.github.com/users/mdhar1980/followers",
"following_url": "https://api.github.com/users/mdhar1980/following{/other_user}",
"gists_url": "https://api.github.com/users/mdhar1980/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mdhar1980/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mdhar1980/subscriptions",
"organizations_url": "https://api.github.com/users/mdhar1980/orgs",
"repos_url": "https://api.github.com/users/mdhar1980/repos",
"events_url": "https://api.github.com/users/mdhar1980/events{/privacy}",
"received_events_url": "https://api.github.com/users/mdhar1980/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
},
{
"id": 574384933,
"node_id": "MDU6TGFiZWw1NzQzODQ5MzM=",
"url": "https://api.github.com/repos/tripal/tripal/labels/tripal-7.x-2.x",
"name": "tripal-7.x-2.x",
"color": "ffffff",
"default": false
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 14,
"created_at": "2018-11-21T03:28:53Z",
"updated_at": "2018-11-27T06:21:18Z",
"closed_at": null,
"author_association": "NONE",
"body": "Hello!\r\n\r\nI am attempting to upload a GFF file on Tripal 7.x-2.x (https://github.com/tripal/tripal.git). However, the job keeps stalling at around 37% of parsed lines.\r\n\r\nThere is no error output from the Drush command. The Tripal Jobs list just says, \"Error.\" So I'm not sure how to troubleshoot.\r\n\r\nI first increased the PHP memory_limit value, as advised in the tutorial, to 2048M. I then raised it to 5120M. Both times, the job stalled at about 37% (36.74% for the former, 37.71% for the latter). It seems like the difference should have been much different if that was the issue, but I don't know.\r\n\r\nPlease advise if you have any advice on how to move past this stalling, with no clear error message, of a GFF load.\r\n\r\nThank you!"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/733",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/733/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/733/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/733/events",
"html_url": "https://github.com/tripal/tripal/issues/733",
"id": 376854680,
"node_id": "MDU6SXNzdWUzNzY4NTQ2ODA=",
"number": 733,
"title": "kegg tripal 3",
"user": {
"login": "kyrenya",
"id": 43243429,
"node_id": "MDQ6VXNlcjQzMjQzNDI5",
"avatar_url": "https://avatars1.githubusercontent.com/u/43243429?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kyrenya",
"html_url": "https://github.com/kyrenya",
"followers_url": "https://api.github.com/users/kyrenya/followers",
"following_url": "https://api.github.com/users/kyrenya/following{/other_user}",
"gists_url": "https://api.github.com/users/kyrenya/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kyrenya/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kyrenya/subscriptions",
"organizations_url": "https://api.github.com/users/kyrenya/orgs",
"repos_url": "https://api.github.com/users/kyrenya/repos",
"events_url": "https://api.github.com/users/kyrenya/events{/privacy}",
"received_events_url": "https://api.github.com/users/kyrenya/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 686191570,
"node_id": "MDU6TGFiZWw2ODYxOTE1NzA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/documentation",
"name": "documentation",
"color": "bfdadc",
"default": false
},
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": {
"login": "bradfordcondon",
"id": 7063154,
"node_id": "MDQ6VXNlcjcwNjMxNTQ=",
"avatar_url": "https://avatars2.githubusercontent.com/u/7063154?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bradfordcondon",
"html_url": "https://github.com/bradfordcondon",
"followers_url": "https://api.github.com/users/bradfordcondon/followers",
"following_url": "https://api.github.com/users/bradfordcondon/following{/other_user}",
"gists_url": "https://api.github.com/users/bradfordcondon/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bradfordcondon/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bradfordcondon/subscriptions",
"organizations_url": "https://api.github.com/users/bradfordcondon/orgs",
"repos_url": "https://api.github.com/users/bradfordcondon/repos",
"events_url": "https://api.github.com/users/bradfordcondon/events{/privacy}",
"received_events_url": "https://api.github.com/users/bradfordcondon/received_events",
"type": "User",
"site_admin": false
},
"assignees": [
{
"login": "bradfordcondon",
"id": 7063154,
"node_id": "MDQ6VXNlcjcwNjMxNTQ=",
"avatar_url": "https://avatars2.githubusercontent.com/u/7063154?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bradfordcondon",
"html_url": "https://github.com/bradfordcondon",
"followers_url": "https://api.github.com/users/bradfordcondon/followers",
"following_url": "https://api.github.com/users/bradfordcondon/following{/other_user}",
"gists_url": "https://api.github.com/users/bradfordcondon/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bradfordcondon/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bradfordcondon/subscriptions",
"organizations_url": "https://api.github.com/users/bradfordcondon/orgs",
"repos_url": "https://api.github.com/users/bradfordcondon/repos",
"events_url": "https://api.github.com/users/bradfordcondon/events{/privacy}",
"received_events_url": "https://api.github.com/users/bradfordcondon/received_events",
"type": "User",
"site_admin": false
}
],
"milestone": null,
"comments": 9,
"created_at": "2018-11-02T15:21:57Z",
"updated_at": "2018-12-01T21:23:34Z",
"closed_at": null,
"author_association": "NONE",
"body": "hi! \r\nI'm trying to get a file similar to the hier.tar.gz in the KEGG annotation example. I cannot run Kaas locally cause FTP is not free anymore, and when I do the analysis in the server: https://www.genome.jp/tools/kaas/ I dont see how to download anything similar. Do I need to download manually all the .keg files and then compress? \r\nThanks in advance.\r\n"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/731",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/731/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/731/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/731/events",
"html_url": "https://github.com/tripal/tripal/issues/731",
"id": 375029446,
"node_id": "MDU6SXNzdWUzNzUwMjk0NDY=",
"number": 731,
"title": "\"max_locks_per_transaction\" memory setting for Chado load (Tripal v2)?",
"user": {
"login": "mdhar1980",
"id": 18684260,
"node_id": "MDQ6VXNlcjE4Njg0MjYw",
"avatar_url": "https://avatars3.githubusercontent.com/u/18684260?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mdhar1980",
"html_url": "https://github.com/mdhar1980",
"followers_url": "https://api.github.com/users/mdhar1980/followers",
"following_url": "https://api.github.com/users/mdhar1980/following{/other_user}",
"gists_url": "https://api.github.com/users/mdhar1980/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mdhar1980/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mdhar1980/subscriptions",
"organizations_url": "https://api.github.com/users/mdhar1980/orgs",
"repos_url": "https://api.github.com/users/mdhar1980/repos",
"events_url": "https://api.github.com/users/mdhar1980/events{/privacy}",
"received_events_url": "https://api.github.com/users/mdhar1980/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 9,
"created_at": "2018-10-29T13:59:47Z",
"updated_at": "2018-11-24T13:57:24Z",
"closed_at": "2018-11-09T16:23:24Z",
"author_association": "NONE",
"body": "Hello!\r\n\r\nI am installing Tripal v2 using the tutorial. At the Chado installation process, I ran into the following Error regarding memory. (Note: This is a re-installation of Chado, as we had previously installed with Tripal v7.x-2.1; we removed that and replaced it with v7.x-2.x from Github in order to get it to work with the Views patch.)\r\n\r\n> WD tripal_core: SQLSTATE[53200]: Out of memory: 7 ERROR: out of shared memory [error]\r\n> HINT: You might need to increase max_locks_per_transaction.\r\n> [site http://default] [TRIPAL ERROR] [TRIPAL_CORE] SQLSTATE[53200]: Out of memory: 7 ERROR: out of shared memoryHINT: You might need to increase max_locks_per_transaction.\r\n\r\nSo, my question: What level should that max_locks_per_transaction stting for SQL be set to?\r\n\r\nThanks,\r\nMichael"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/730",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/730/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/730/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/730/events",
"html_url": "https://github.com/tripal/tripal/issues/730",
"id": 375026798,
"node_id": "MDU6SXNzdWUzNzUwMjY3OTg=",
"number": 730,
"title": "4th Ontology in Tripal v2 Installation Tutorial? Also, time for GO?",
"user": {
"login": "mdhar1980",
"id": 18684260,
"node_id": "MDQ6VXNlcjE4Njg0MjYw",
"avatar_url": "https://avatars3.githubusercontent.com/u/18684260?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mdhar1980",
"html_url": "https://github.com/mdhar1980",
"followers_url": "https://api.github.com/users/mdhar1980/followers",
"following_url": "https://api.github.com/users/mdhar1980/following{/other_user}",
"gists_url": "https://api.github.com/users/mdhar1980/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mdhar1980/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mdhar1980/subscriptions",
"organizations_url": "https://api.github.com/users/mdhar1980/orgs",
"repos_url": "https://api.github.com/users/mdhar1980/repos",
"events_url": "https://api.github.com/users/mdhar1980/events{/privacy}",
"received_events_url": "https://api.github.com/users/mdhar1980/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 3,
"created_at": "2018-10-29T13:54:13Z",
"updated_at": "2018-11-08T02:46:27Z",
"closed_at": "2018-11-08T02:46:27Z",
"author_association": "NONE",
"body": "Hello!\r\n\r\nWe are installing Tripal v2 using the tutorial, and it's a little unclear here (http://tripal.info/tutorials/v2.x/installation/tripal) on the ontologies to load. It lists three (Chado feature properties, Sequence ontology, Gene ontology), but the next paragraph says, \"Repeat this process for each of the FOUR ontologies.\" Is there a fourth that needs to be loaded? If so, which one?\r\n\r\nAlso, I submitted the job for loading the Gene Ontology yesterday, and it's still \"running\" at 99% completed nearly a day later. I know it says it could take a while, but is that normal, or is there likely something not working?\r\n\r\nThank you!\r\n--Michael"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/728",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/728/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/728/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/728/events",
"html_url": "https://github.com/tripal/tripal/issues/728",
"id": 373035388,
"node_id": "MDU6SXNzdWUzNzMwMzUzODg=",
"number": 728,
"title": "Legacy Navigation Menu",
"user": {
"login": "kyrenya",
"id": 43243429,
"node_id": "MDQ6VXNlcjQzMjQzNDI5",
"avatar_url": "https://avatars1.githubusercontent.com/u/43243429?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kyrenya",
"html_url": "https://github.com/kyrenya",
"followers_url": "https://api.github.com/users/kyrenya/followers",
"following_url": "https://api.github.com/users/kyrenya/following{/other_user}",
"gists_url": "https://api.github.com/users/kyrenya/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kyrenya/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kyrenya/subscriptions",
"organizations_url": "https://api.github.com/users/kyrenya/orgs",
"repos_url": "https://api.github.com/users/kyrenya/repos",
"events_url": "https://api.github.com/users/kyrenya/events{/privacy}",
"received_events_url": "https://api.github.com/users/kyrenya/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 10,
"created_at": "2018-10-23T14:36:13Z",
"updated_at": "2018-11-08T02:47:35Z",
"closed_at": "2018-11-08T02:47:34Z",
"author_association": "NONE",
"body": "Hi there!\r\nI'm using tripal v3.0 (latest), Ubuntu 18.04.\r\n\r\nI'm a bit confused with the tripal legacy thing. If I understood well, legacy contains the previous tripal versions modules? in my new db I'm building, when I go to Find Tripal Content, I see what I am creating (organism, analyses, features.. etc). but in my home page, I see a Navigation panel, \r\n![image](https://user-images.githubusercontent.com/43243429/47367696-19dd1780-d6d8-11e8-9ec9-44d13969bb54.png)\r\n\r\nbut it seems to me that links me to \"legacy\" content? \r\nwhen I click in for example.. features: \r\n![image](https://user-images.githubusercontent.com/43243429/47367771-44c76b80-d6d8-11e8-95bb-b87402b13dbc.png)\r\nI dont see the blue links until I dont sync Features going to Tripal- Tripal Legacy - Features - Sync.\r\nand then I see them.\r\n\r\n![image](https://user-images.githubusercontent.com/43243429/47368062-dd5deb80-d6d8-11e8-923e-4d4aa53263c1.png)\r\n\r\nso, if I am right.. my question is: How can I have my Navigation Panel actually pointing to the same links than when I go to Find Tripal Content? is that even possible? is it necessary then to sync everything all the time? \r\n\r\nThanks! \r\n\r\n\r\n\r\n"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/722",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/722/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/722/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/722/events",
"html_url": "https://github.com/tripal/tripal/issues/722",
"id": 371900797,
"node_id": "MDU6SXNzdWUzNzE5MDA3OTc=",
"number": 722,
"title": "CrossReference",
"user": {
"login": "kyrenya",
"id": 43243429,
"node_id": "MDQ6VXNlcjQzMjQzNDI5",
"avatar_url": "https://avatars1.githubusercontent.com/u/43243429?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kyrenya",
"html_url": "https://github.com/kyrenya",
"followers_url": "https://api.github.com/users/kyrenya/followers",
"following_url": "https://api.github.com/users/kyrenya/following{/other_user}",
"gists_url": "https://api.github.com/users/kyrenya/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kyrenya/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kyrenya/subscriptions",
"organizations_url": "https://api.github.com/users/kyrenya/orgs",
"repos_url": "https://api.github.com/users/kyrenya/repos",
"events_url": "https://api.github.com/users/kyrenya/events{/privacy}",
"received_events_url": "https://api.github.com/users/kyrenya/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 5,
"created_at": "2018-10-19T10:34:00Z",
"updated_at": "2018-10-22T13:07:55Z",
"closed_at": "2018-10-22T13:07:55Z",
"author_association": "NONE",
"body": "Hi\r\nUsing UBUNTU 18.04 and last Tripal v3.0 Release installation\r\nI'm trying to follow the tutorial of the citrus example: \r\n\r\nWhen creating the organism, my link to CrossReference never works.. \r\n\r\n![image](https://user-images.githubusercontent.com/43243429/47213363-aadb8800-d392-11e8-94ba-a5d2a3e42fd8.png)\r\n\r\n\r\nshould link to: \r\npurl.obolibrary.org/obo/ncbitaxon#NCBITaxon:2711\r\nnever loads. \r\nis that an issue of the OBO or my tripal crossreference config? \r\n\r\n\r\nThanks! \r\n"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/721",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/721/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/721/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/721/events",
"html_url": "https://github.com/tripal/tripal/issues/721",
"id": 371899879,
"node_id": "MDU6SXNzdWUzNzE4OTk4Nzk=",
"number": 721,
"title": "Filtered HTML",
"user": {
"login": "kyrenya",
"id": 43243429,
"node_id": "MDQ6VXNlcjQzMjQzNDI5",
"avatar_url": "https://avatars1.githubusercontent.com/u/43243429?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kyrenya",
"html_url": "https://github.com/kyrenya",
"followers_url": "https://api.github.com/users/kyrenya/followers",
"following_url": "https://api.github.com/users/kyrenya/following{/other_user}",
"gists_url": "https://api.github.com/users/kyrenya/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kyrenya/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kyrenya/subscriptions",
"organizations_url": "https://api.github.com/users/kyrenya/orgs",
"repos_url": "https://api.github.com/users/kyrenya/repos",
"events_url": "https://api.github.com/users/kyrenya/events{/privacy}",
"received_events_url": "https://api.github.com/users/kyrenya/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 5,
"created_at": "2018-10-19T10:31:15Z",
"updated_at": "2018-10-22T14:04:40Z",
"closed_at": "2018-10-22T13:07:23Z",
"author_association": "NONE",
"body": "\r\nHi\r\nUsing UBUNTU 18.04 and last Tripal v3.0 Release installation\r\nI'm trying to follow the tutorial of the citrus example: \r\n\r\nWhen creating the analysis, using Filtered HTML doesnt work, I don't get the description text formatted\r\n![image](https://user-images.githubusercontent.com/43243429/47213172-2ab52280-d392-11e8-8d5c-1375fa66b5d5.png). In the text guidelines, by the way, it's written 'Description (Set to Full HTML)' , shouldn't be Set to Filtered HTML?\r\n\r\nThanks! \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/719",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/719/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/719/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/719/events",
"html_url": "https://github.com/tripal/tripal/issues/719",
"id": 371181843,
"node_id": "MDU6SXNzdWUzNzExODE4NDM=",
"number": 719,
"title": "PHP version 7.2",
"user": {
"login": "kyrenya",
"id": 43243429,
"node_id": "MDQ6VXNlcjQzMjQzNDI5",
"avatar_url": "https://avatars1.githubusercontent.com/u/43243429?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kyrenya",
"html_url": "https://github.com/kyrenya",
"followers_url": "https://api.github.com/users/kyrenya/followers",
"following_url": "https://api.github.com/users/kyrenya/following{/other_user}",
"gists_url": "https://api.github.com/users/kyrenya/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kyrenya/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kyrenya/subscriptions",
"organizations_url": "https://api.github.com/users/kyrenya/orgs",
"repos_url": "https://api.github.com/users/kyrenya/repos",
"events_url": "https://api.github.com/users/kyrenya/events{/privacy}",
"received_events_url": "https://api.github.com/users/kyrenya/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "closed",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 15,
"created_at": "2018-10-17T17:15:56Z",
"updated_at": "2018-11-14T17:40:44Z",
"closed_at": "2018-11-14T16:49:37Z",
"author_association": "NONE",
"body": "Hi, I'm about to install v3 from scratch. \r\nI will follow instructions here\r\nhttps://tripal.readthedocs.io/en/latest/user_guide/install_tripal/server_setup.html\r\n\r\n- is it ok to download the default php 7.2 (ubuntu 18.04) (sudo apt-get install php php-dev php-cli libapache2-mod-php) or will I have compatibility issues? (I tried in a first attempt to downgrade to 7.1 but apparently I didnt do it very well, and then no further steps worked for me, thats why I'm restarting)\r\n\r\nThanks! \r\n\r\n \r\n"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/689",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/689/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/689/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/689/events",
"html_url": "https://github.com/tripal/tripal/issues/689",
"id": 364410019,
"node_id": "MDU6SXNzdWUzNjQ0MTAwMTk=",
"number": 689,
"title": "Functional Annotation",
"user": {
"login": "kyrenya",
"id": 43243429,
"node_id": "MDQ6VXNlcjQzMjQzNDI5",
"avatar_url": "https://avatars1.githubusercontent.com/u/43243429?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kyrenya",
"html_url": "https://github.com/kyrenya",
"followers_url": "https://api.github.com/users/kyrenya/followers",
"following_url": "https://api.github.com/users/kyrenya/following{/other_user}",
"gists_url": "https://api.github.com/users/kyrenya/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kyrenya/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kyrenya/subscriptions",
"organizations_url": "https://api.github.com/users/kyrenya/orgs",
"repos_url": "https://api.github.com/users/kyrenya/repos",
"events_url": "https://api.github.com/users/kyrenya/events{/privacy}",
"received_events_url": "https://api.github.com/users/kyrenya/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 686191570,
"node_id": "MDU6TGFiZWw2ODYxOTE1NzA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/documentation",
"name": "documentation",
"color": "bfdadc",
"default": false
},
{
"id": 786499008,
"node_id": "MDU6TGFiZWw3ODY0OTkwMDg=",
"url": "https://api.github.com/repos/tripal/tripal/labels/fix%20required",
"name": "fix required",
"color": "540875",
"default": false
},
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 17,
"created_at": "2018-09-27T10:35:24Z",
"updated_at": "2018-11-11T20:31:22Z",
"closed_at": null,
"author_association": "NONE",
"body": "Hi, \r\nI'm trying with no success to follow the tutorial for functional Annotation Modules (https://tripal.info/node/106), though I'm using Tripal v3 (I didnt find a tutorial for this version, is there any?).\r\n\r\nI came across several issues: \r\n\r\n_BLAST Module:\r\n After following the instruction for loading the BLAST results: \r\n \r\n Database: ExPASy SwissProt\r\n BLAST XML File/Directory: /var/www/html/sites/default/files/Blastx_citrus_sinensis-orange1.1g015632m.g.fasta.0_vs_uniprot_sprot.fasta.out\r\n Query Type: mRNA\r\n Parameters: -p blastx -e 1e-6 -m 7\r\n Submit a job to parse the XML output: checked\r\n Keywords for custom search: checked\r\n Click the Save button. You can now see our new Analysis._\r\n\r\nI see the Analysis, but when running the job to parse the BLAST results I get the following Error message: \r\n\r\n PDOException: SQLSTATE[42P01]: Undefined table: 7 ERROR: relation \"chado.blast_hit_data\" does not exist LINE 1: DELETE FROM chado.blast_hit_data WHERE analysisfeature_id =... ^: DELETE FROM chado.blast_hit_data WHERE analysisfeature_id = :analysisfeature_id ; Array ( [:analysisfeature_id] => 157384 ) in chado_query() (line 1715 of /var/www/html/sites/all/modules/tripal/tripal_chado/api/tripal_chado.query.api.inc).\r\n\r\nInterProScan Module: \r\nEverything seems to work fine, but I don't see the \"Interpro Report\" link anywhere.\r\nI also cannot follow the link http://[localhost]/orange1.1g015615m\r\n\r\nKEGG Module works fine! \r\n\r\nThanks in advance.\r\n\r\nBy the way, I'm not using Tripal via git.. should I? \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/645",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/645/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/645/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/645/events",
"html_url": "https://github.com/tripal/tripal/issues/645",
"id": 359600587,
"node_id": "MDU6SXNzdWUzNTk2MDA1ODc=",
"number": 645,
"title": "gene/mRNA feature versioning",
"user": {
"login": "srobb1",
"id": 1072991,
"node_id": "MDQ6VXNlcjEwNzI5OTE=",
"avatar_url": "https://avatars0.githubusercontent.com/u/1072991?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/srobb1",
"html_url": "https://github.com/srobb1",
"followers_url": "https://api.github.com/users/srobb1/followers",
"following_url": "https://api.github.com/users/srobb1/following{/other_user}",
"gists_url": "https://api.github.com/users/srobb1/gists{/gist_id}",
"starred_url": "https://api.github.com/users/srobb1/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/srobb1/subscriptions",
"organizations_url": "https://api.github.com/users/srobb1/orgs",
"repos_url": "https://api.github.com/users/srobb1/repos",
"events_url": "https://api.github.com/users/srobb1/events{/privacy}",
"received_events_url": "https://api.github.com/users/srobb1/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 10,
"created_at": "2018-09-12T18:30:39Z",
"updated_at": "2018-10-08T15:51:40Z",
"closed_at": null,
"author_association": "MEMBER",
"body": "Hello All,\r\n\r\nI have a question about how others are handling sequence feature versions.\r\n\r\nI have a group that is developing gene/mRNA models. They are using an ensembl like system for versioning of gene and transcript id. And they want to maintain a history of previous versions.\r\n\r\nThey plan on incrementing a digit after the id when a new version is generated.\r\n\r\ngene nv2m00005394.1\r\nmRNA nv2m00005394.1.mRNA.1\r\n\r\n```\r\nChr11\tGFF3Conv\tgene\t3598792\t3603486\t.\t-\t.\tAlias=Sox9;Name=nv2m00005394.1;ID=nv2m00005394.1\r\nChr11\tGFF3Conv\tmRNA\t3598792\t3603486\t.\t-\t.\tID=nv2m00005394.1.mRNA.1;Parent=nv2m00005394.1\r\n```\r\n\r\n\r\nHow should I handle this? Create a new feature for each version and mark the old one obsolete? How do I make it easy for users to find the correct ID when they don't know there has been an update? I have some ideas, but it would require the geneID and mRNAIDs to have different bases, ie nv2g00005394 (change g->m) for gene and nv2m00005394 for mRNA.\r\n\r\nAny advice would be fantastic!!!\r\n\r\nThank you!\r\nSofia\r\n\r\n\r\n"
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/626",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/626/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/626/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/626/events",
"html_url": "https://github.com/tripal/tripal/issues/626",
"id": 356290487,
"node_id": "MDU6SXNzdWUzNTYyOTA0ODc=",
"number": 626,
"title": "feature -> all_relationships from a custom table",
"user": {
"login": "oklonova",
"id": 37333828,
"node_id": "MDQ6VXNlcjM3MzMzODI4",
"avatar_url": "https://avatars3.githubusercontent.com/u/37333828?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/oklonova",
"html_url": "https://github.com/oklonova",
"followers_url": "https://api.github.com/users/oklonova/followers",
"following_url": "https://api.github.com/users/oklonova/following{/other_user}",
"gists_url": "https://api.github.com/users/oklonova/gists{/gist_id}",
"starred_url": "https://api.github.com/users/oklonova/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/oklonova/subscriptions",
"organizations_url": "https://api.github.com/users/oklonova/orgs",
"repos_url": "https://api.github.com/users/oklonova/repos",
"events_url": "https://api.github.com/users/oklonova/events{/privacy}",
"received_events_url": "https://api.github.com/users/oklonova/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 586556530,
"node_id": "MDU6TGFiZWw1ODY1NTY1MzA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/discussion",
"name": "discussion",
"color": "006b75",
"default": false
},
{
"id": 261706550,
"node_id": "MDU6TGFiZWwyNjE3MDY1NTA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/question",
"name": "question",
"color": "006b75",
"default": true
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [
],
"milestone": null,
"comments": 4,
"created_at": "2018-09-02T15:18:12Z",
"updated_at": "2018-10-02T02:07:06Z",
"closed_at": null,
"author_association": "NONE",
"body": "How do I change the $feature->all_relationships variable, if the data about relationships come from a custom table or if I use feature_relationshipprop in addition to feature_relationship? Using it in the template file tripal_feature_relationships.tpl.php."
},
{
"url": "https://api.github.com/repos/tripal/tripal/issues/610",
"repository_url": "https://api.github.com/repos/tripal/tripal",
"labels_url": "https://api.github.com/repos/tripal/tripal/issues/610/labels{/name}",
"comments_url": "https://api.github.com/repos/tripal/tripal/issues/610/comments",
"events_url": "https://api.github.com/repos/tripal/tripal/issues/610/events",
"html_url": "https://github.com/tripal/tripal/issues/610",
"id": 355047652,
"node_id": "MDU6SXNzdWUzNTUwNDc2NTI=",
"number": 610,
"title": "Changing field types in a Chado table (Chado API Docs Needed)",
"user": {
"login": "oklonova",
"id": 37333828,
"node_id": "MDQ6VXNlcjM3MzMzODI4",
"avatar_url": "https://avatars3.githubusercontent.com/u/37333828?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/oklonova",
"html_url": "https://github.com/oklonova",
"followers_url": "https://api.github.com/users/oklonova/followers",
"following_url": "https://api.github.com/users/oklonova/following{/other_user}",
"gists_url": "https://api.github.com/users/oklonova/gists{/gist_id}",
"starred_url": "https://api.github.com/users/oklonova/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/oklonova/subscriptions",
"organizations_url": "https://api.github.com/users/oklonova/orgs",
"repos_url": "https://api.github.com/users/oklonova/repos",
"events_url": "https://api.github.com/users/oklonova/events{/privacy}",
"received_events_url": "https://api.github.com/users/oklonova/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"id": 686191570,
"node_id": "MDU6TGFiZWw2ODYxOTE1NzA=",
"url": "https://api.github.com/repos/tripal/tripal/labels/documentation",
"name": "documentation",
"color": "bfdadc",
"default": false
},
{