File: ensgvsynonym.c

package info (click to toggle)
emboss 6.6.0%2Bdfsg-15
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 571,580 kB
  • sloc: ansic: 460,579; java: 29,383; perl: 13,573; sh: 12,753; makefile: 3,295; csh: 706; asm: 351; xml: 239; pascal: 237; modula3: 8
file content (891 lines) | stat: -rw-r--r-- 25,141 bytes parent folder | download | duplicates (6)
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
/* @source ensgvsynonym *******************************************************
**
** Ensembl Genetic Variation Synonym functions
**
** @author Copyright (C) 1999 Ensembl Developers
** @author Copyright (C) 2006 Michael K. Schuster
** @version $Revision: 1.21 $
** @modified 2009 by Alan Bleasby for incorporation into EMBOSS core
** @modified $Date: 2013/02/17 13:02:40 $ by $Author: mks $
** @@
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License as published by the Free Software Foundation; either
** version 2.1 of the License, or (at your option) any later version.
**
** This library is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
** Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public
** License along with this library; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
** MA  02110-1301,  USA.
**
******************************************************************************/

/* ========================================================================= */
/* ============================= include files ============================= */
/* ========================================================================= */

#include "ensgvsource.h"
#include "ensgvsynonym.h"




/* ========================================================================= */
/* =============================== constants =============================== */
/* ========================================================================= */




/* ========================================================================= */
/* =========================== global variables ============================ */
/* ========================================================================= */




/* ========================================================================= */
/* ============================= private data ============================== */
/* ========================================================================= */




/* ========================================================================= */
/* =========================== private constants =========================== */
/* ========================================================================= */




/* ========================================================================= */
/* =========================== private variables =========================== */
/* ========================================================================= */




/* ========================================================================= */
/* =========================== private functions =========================== */
/* ========================================================================= */




/* ========================================================================= */
/* ======================= All functions by section ======================== */
/* ========================================================================= */




/* @filesection ensgvsynonym **************************************************
**
** @nam1rule ens Function belongs to the Ensembl library
**
******************************************************************************/




/* @datasection [EnsPGvsynonym] Ensembl Genetic Variation Synonym *************
**
** @nam2rule Gvsynonym Functions for manipulating
** Ensembl Genetic Variation Synonym objects
**
** NOTE: The Ensembl Genetic Variation Synonym object has no counterpart in the
** Ensembl Genetic Variation Perl API. It has been split out of the
** Bio::EnsEMBL::Variation::Variation object to formalise entries from the
** 'variation_synonym' table.
**
** @cc Bio::EnsEMBL::Variation::Variation
** @cc CVS Revision: 1.68
** @cc CVS Tag: branch-ensembl-68
**
******************************************************************************/




/* @section constructors ******************************************************
**
** All constructors return a new Ensembl Genetic Variation Synonym by pointer.
** It is the responsibility of the user to first destroy any previous
** Genetic Variation Synonym. The target pointer does not need to be
** initialised to NULL, but it is good programming practice to do so anyway.
**
** @fdata [EnsPGvsynonym]
**
** @nam3rule New Constructor
** @nam4rule Cpy Constructor with existing object
** @nam4rule Ini Constructor with initial values
** @nam4rule Ref Constructor by incrementing the reference counter
**
** @argrule Cpy gvs [const EnsPGvsynonym] Ensembl Genetic Variation Synonym
** @argrule Ini gvsa [EnsPGvsynonymadaptor] Ensembl Genetic Variation
** @argrule Ini identifier [ajuint] SQL database-internal identifier
** @argrule Ini gvsource [EnsPGvsource] Ensembl Genetic Variation Source
** @argrule Ini name [AjPStr] Name
** @argrule Ini moleculetype [AjPStr] Molecule type
** @argrule Ini gvvidentifier [ajuint] Ensembl Genetic Variation identifier
** @argrule Ini subidentifier [ajuint] Sub identifier
** @argrule Ref gvs [EnsPGvsynonym] Ensembl Genetic Variation Synonym
**
** @valrule * [EnsPGvsynonym] Ensembl Genetic Variation Synonym or NULL
**
** @fcategory new
******************************************************************************/




/* @func ensGvsynonymNewCpy ***************************************************
**
** Object-based constructor function, which returns an independent object.
**
** @param [r] gvs [const EnsPGvsynonym] Ensembl Genetic Variation Synonym
**
** @return [EnsPGvsynonym] Ensembl Genetic Variation Synonym or NULL
**
** @release 6.4.0
** @@
******************************************************************************/

EnsPGvsynonym ensGvsynonymNewCpy(const EnsPGvsynonym gvs)
{
    EnsPGvsynonym pthis = NULL;

    if (!gvs)
        return NULL;

    AJNEW0(pthis);

    pthis->Use        = 1U;
    pthis->Identifier = gvs->Identifier;
    pthis->Adaptor    = gvs->Adaptor;
    pthis->Gvsource   = ensGvsourceNewRef(gvs->Gvsource);

    if (gvs->Name)
        pthis->Name = ajStrNewRef(gvs->Name);

    if (gvs->Moleculetype)
        pthis->Moleculetype = ajStrNewRef(gvs->Moleculetype);

    pthis->Gvvariationidentifier = gvs->Gvvariationidentifier;
    pthis->Subidentifier         = gvs->Subidentifier;

    return pthis;
}




/* @func ensGvsynonymNewIni ***************************************************
**
** Constructor for an Ensembl Genetic Variation Synonym with initial values.
**
** @cc Bio::EnsEMBL::Storable::new
** @param [u] gvsa [EnsPGvsynonymadaptor]
** Ensembl Genetic Variation Synonym Adaptor
** @param [r] identifier [ajuint] SQL database-internal identifier
** @cc Bio::EnsEMBL::Variation::*::new
** @param [u] gvsource [EnsPGvsource] Ensembl Genetic Variation Source
** @param [u] name [AjPStr] Name
** @param [u] moleculetype [AjPStr] Molecule type
** @param [r] gvvidentifier [ajuint] Ensembl Genetic Variation identifier
** @param [r] subidentifier [ajuint] Sub identifier
**
** @return [EnsPGvsynonym] Ensembl Genetic Variation Synonym or NULL
**
** @release 6.4.0
** @@
******************************************************************************/

EnsPGvsynonym ensGvsynonymNewIni(EnsPGvsynonymadaptor gvsa,
                                 ajuint identifier,
                                 EnsPGvsource gvsource,
                                 AjPStr name,
                                 AjPStr moleculetype,
                                 ajuint gvvidentifier,
                                 ajuint subidentifier)
{
    EnsPGvsynonym gvs = NULL;

    AJNEW0(gvs);

    gvs->Use        = 1U;
    gvs->Identifier = identifier;
    gvs->Adaptor    = gvsa;
    gvs->Gvsource   = ensGvsourceNewRef(gvsource);

    if (name)
        gvs->Name = ajStrNewRef(name);

    if (moleculetype)
        gvs->Moleculetype = ajStrNewRef(moleculetype);

    gvs->Gvvariationidentifier = gvvidentifier;
    gvs->Subidentifier         = subidentifier;

    return gvs;
}




/* @func ensGvsynonymNewRef ***************************************************
**
** Ensembl Object referencing function, which returns a pointer to the
** Ensembl Object passed in and increases its reference count.
**
** @param [u] gvs [EnsPGvsynonym] Ensembl Genetic Variation Synonym
**
** @return [EnsPGvsynonym] Ensembl Genetic Variation Synonym or NULL
**
** @release 6.4.0
** @@
******************************************************************************/

EnsPGvsynonym ensGvsynonymNewRef(EnsPGvsynonym gvs)
{
    if (!gvs)
        return NULL;

    gvs->Use++;

    return gvs;
}




/* @section destructors *******************************************************
**
** Destruction destroys all internal data structures and frees the memory
** allocated for an Ensembl Genetic Variation Synonym object.
**
** @fdata [EnsPGvsynonym]
**
** @nam3rule Del Destroy (free) an Ensembl Genetic Variation Synonym
**
** @argrule * Pgvs [EnsPGvsynonym*] Ensembl Genetic Variation Synonym address
**
** @valrule * [void]
**
** @fcategory delete
******************************************************************************/




/* @func ensGvsynonymDel ******************************************************
**
** Default destructor for an Ensembl Genetic Variation Synonym.
**
** @param [d] Pgvs [EnsPGvsynonym*] Ensembl Genetic Variation Synonym address
**
** @return [void]
**
** @release 6.4.0
** @@
******************************************************************************/

void ensGvsynonymDel(EnsPGvsynonym *Pgvs)
{
    EnsPGvsynonym pthis = NULL;

    if (!Pgvs)
        return;

#if defined(AJ_DEBUG) && AJ_DEBUG >= 1
    if (ajDebugTest("ensGvsynonymDel"))
    {
        ajDebug("ensGvsynonymDel\n"
                "  *Pgvs %p\n",
                *Pgvs);

        ensGvsynonymTrace(*Pgvs, 1);
    }
#endif /* defined(AJ_DEBUG) && AJ_DEBUG >= 1 */

    if (!(pthis = *Pgvs) || --pthis->Use)
    {
        *Pgvs = NULL;

        return;
    }

    ensGvsourceDel(&pthis->Gvsource);

    ajStrDel(&pthis->Name);
    ajStrDel(&pthis->Moleculetype);

    ajMemFree((void **) Pgvs);

    return;
}




/* @section member retrieval **************************************************
**
** Functions for returning members of an
** Ensembl Genetic Variation Synonym object.
**
** @fdata [EnsPGvsynonym]
**
** @nam3rule Get Return Genetic Variation Synonym attribute(s)
** @nam4rule Adaptor Return the Ensembl Genetic Variation Synonym Adaptor
** @nam4rule Gvsource Return the Ensembl Genetic Variation Source
** @nam4rule Gvvariationidentifier
** Return the Ensembl Genetic Variation identifier
** @nam4rule Identifier Return the SQL database-internal identifier
** @nam4rule Moleculetype Return the molecule type
** @nam4rule Name Return the name
** @nam4rule Subidentifier Return the sub-identifier
**
** @argrule * gvs [const EnsPGvsynonym] Genetic Variation Synonym
**
** @valrule Adaptor [EnsPGvsynonymadaptor]
** Ensembl Genetic Variation Synonym Adaptor or NULL
** @valrule Gvsource [EnsPGvsource] Ensembl Genetic Variation Source or NULL
** @valrule Gvvariationidentifier [ajuint]
** Ensembl Genetic Variation identifier or 0U
** @valrule Identifier [ajuint] SQL database-internal identifier or 0U
** @valrule Moleculetype [AjPStr] Molecule type or NULL
** @valrule Name [AjPStr] Name or NULL
** @valrule Subidentifier [ajuint] Sub-identifier or 0U
**
** @fcategory use
******************************************************************************/




/* @func ensGvsynonymGetAdaptor ***********************************************
**
** Get the Ensembl Genetic Variation Synonym Adaptor member of an
** Ensembl Genetic Variation Synonym.
**
** @param [r] gvs [const EnsPGvsynonym] Ensembl Genetic Variation Synonym
**
** @return [EnsPGvsynonymadaptor] Ensembl Genetic Variation Synonym Adaptor
** or NULL
**
** @release 6.4.0
** @@
******************************************************************************/

EnsPGvsynonymadaptor ensGvsynonymGetAdaptor(const EnsPGvsynonym gvs)
{
    return (gvs) ? gvs->Adaptor : NULL;
}




/* @func ensGvsynonymGetGvsource **********************************************
**
** Get the Ensembl Genetic Variation Source member of an
** Ensembl Genetic Variation Synonym.
**
** @param [r] gvs [const EnsPGvsynonym] Ensembl Genetic Variation Synonym
**
** @return [EnsPGvsource] Ensembl Genetic Variation Source or NULL
**
** @release 6.4.0
** @@
******************************************************************************/

EnsPGvsource ensGvsynonymGetGvsource(const EnsPGvsynonym gvs)
{
    return (gvs) ? gvs->Gvsource : NULL;
}





/* @func ensGvsynonymGetGvvariationidentifier *********************************
**
** Get the Ensembl Genetic Variation identifier member of an
** Ensembl Genetic Variation Synonym.
**
** @param [r] gvs [const EnsPGvsynonym] Ensembl Genetic Variation Synonym
**
** @return [ajuint] Ensembl Genetic Variation identifier or 0U
**
** @release 6.4.0
** @@
******************************************************************************/

ajuint ensGvsynonymGetGvvariationidentifier(const EnsPGvsynonym gvs)
{
    return (gvs) ? gvs->Gvvariationidentifier : 0U;
}





/* @func ensGvsynonymGetIdentifier ********************************************
**
** Get the SQL database-internal identifier member of an
** Ensembl Genetic Variation Synonym.
**
** @param [r] gvs [const EnsPGvsynonym] Ensembl Genetic Variation Synonym
**
** @return [ajuint] SQL database-internal identifier or 0U
**
** @release 6.4.0
** @@
******************************************************************************/

ajuint ensGvsynonymGetIdentifier(const EnsPGvsynonym gvs)
{
    return (gvs) ? gvs->Identifier : 0U;
}





/* @func ensGvsynonymGetMoleculetype ******************************************
**
** Get the molecule type member of an Ensembl Genetic Variation Synonym.
**
** @param [r] gvs [const EnsPGvsynonym] Ensembl Genetic Variation Synonym
**
** @return [AjPStr] Molecule type or NULL
**
** @release 6.4.0
** @@
******************************************************************************/

AjPStr ensGvsynonymGetMoleculetype(const EnsPGvsynonym gvs)
{
    return (gvs) ? gvs->Moleculetype : NULL;
}





/* @func ensGvsynonymGetName **************************************************
**
** Get the name member of an Ensembl Genetic Variation Synonym.
**
** @param [r] gvs [const EnsPGvsynonym] Ensembl Genetic Variation Synonym
**
** @return [AjPStr] Name or NULL
**
** @release 6.4.0
** @@
******************************************************************************/

AjPStr ensGvsynonymGetName(const EnsPGvsynonym gvs)
{
    return (gvs) ? gvs->Name : NULL;
}





/* @func ensGvsynonymGetSubidentifier *****************************************
**
** Get the Sub-identifier member of an Ensembl Genetic Variation Synonym.
**
** @param [r] gvs [const EnsPGvsynonym] Ensembl Genetic Variation Synonym
**
** @return [ajuint] Sub-identifier or 0U
**
** @release 6.4.0
** @@
******************************************************************************/

ajuint ensGvsynonymGetSubidentifier(const EnsPGvsynonym gvs)
{
    return (gvs) ? gvs->Subidentifier : 0U;
}





/* @section member assignment *************************************************
**
** Functions for assigning members of an
** Ensembl Genetic Variation Synonym object.
**
** @fdata [EnsPGvsynonym]
**
** @nam3rule Set Set one member of a Genetic Variation Synonym
** @nam4rule Adaptor Set the Ensembl Genetic Variation Synonym Adaptor
** @nam4rule Gvsource Set the Ensembl Genetic Variation Source
** @nam4rule Gvvariationidentifier Set the Ensembl Genetic Variation
**                                    identifier
** @nam4rule Identifier Set the SQL database-internal identifier
** @nam4rule Moleculetype Set the molecule type
** @nam4rule Name Set the name
** @nam4rule SetSubidentifier Set the sub-identifier
**
** @argrule * gvs [EnsPGvsynonym] Ensembl Genetic Variation Synonym object
** @argrule Adaptor gvsa [EnsPGvsynonymadaptor] Ensembl Genetic Variation
** @argrule Gvsource gvsource [EnsPGvsource] Ensembl Genetic Variation Source
** @argrule Gvvariationidentifier gvvidentifier [ajuint] Ensembl Genetic
** Variation identifier
** @argrule Identifier identifier [ajuint] SQL database-internal identifier
** @argrule Moleculetype moleculetype [AjPStr] Molecule type
** @argrule Name name [AjPStr] Name
** @argrule Subidentifier subidentifier [ajuint] Sub-identifier
**
** @valrule * [AjBool] ajTrue upon success, ajFalse otherwise
**
** @fcategory modify
******************************************************************************/




/* @func ensGvsynonymSetAdaptor ***********************************************
**
** Set the Ensembl Genetic Variation Synonym Adaptor member of an
** Ensembl Genetic Variation Synonym.
**
** @param [u] gvs [EnsPGvsynonym] Ensembl Genetic Variation Synonym
** @param [u] gvsa [EnsPGvsynonymadaptor] Ensembl Genetic Variation
**                                        Synonym Adaptor
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/

AjBool ensGvsynonymSetAdaptor(EnsPGvsynonym gvs,
                              EnsPGvsynonymadaptor gvsa)
{
    if (!gvs)
        return ajFalse;

    gvs->Adaptor = gvsa;

    return ajTrue;
}




/* @func ensGvsynonymSetGvsource **********************************************
**
** Set the Ensembl Genetic Variation Source member of an
** Ensembl Genetic Variation Synonym.
**
** @param [u] gvs [EnsPGvsynonym] Ensembl Genetic Variation Synonym
** @param [u] gvsource [EnsPGvsource] Ensembl Genetic Variation Source
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/

AjBool ensGvsynonymSetGvsource(EnsPGvsynonym gvs,
                               EnsPGvsource gvsource)
{
    if (!gvs)
        return ajFalse;

    ensGvsourceDel(&gvs->Gvsource);

    gvs->Gvsource = ensGvsourceNewRef(gvsource);

    return ajTrue;
}




/* @func ensGvsynonymSetGvvariationidentifier *********************************
**
** Set the Ensembl Genetic Variation identifier member of an
** Ensembl Genetic Variation Synonym.
**
** @param [u] gvs [EnsPGvsynonym] Ensembl Genetic Variation Synonym
** @param [r] gvvidentifier [ajuint] Ensembl Genetic Variation identifier
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/

AjBool ensGvsynonymSetGvvariationidentifier(EnsPGvsynonym gvs,
                                            ajuint gvvidentifier)
{
    if (!gvs)
        return ajFalse;

    gvs->Gvvariationidentifier = gvvidentifier;

    return ajTrue;
}




/* @func ensGvsynonymSetIdentifier ********************************************
**
** Set the SQL database-internal identifier member of an
** Ensembl Genetic Variation Synonym.
**
** @param [u] gvs [EnsPGvsynonym] Ensembl Genetic Variation Synonym
** @param [r] identifier [ajuint] SQL database-internal identifier
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/

AjBool ensGvsynonymSetIdentifier(EnsPGvsynonym gvs,
                                 ajuint identifier)
{
    if (!gvs)
        return ajFalse;

    gvs->Identifier = identifier;

    return ajTrue;
}




/* @func ensGvsynonymSetMoleculetype ******************************************
**
** Set the molecule type member of an Ensembl Genetic Variation Synonym.
**
** @param [u] gvs [EnsPGvsynonym] Ensembl Genetic Variation Synonym
** @param [u] moleculetype [AjPStr] Molecule type
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/

AjBool ensGvsynonymSetMoleculetype(EnsPGvsynonym gvs,
                                   AjPStr moleculetype)
{
    if (!gvs)
        return ajFalse;

    ajStrDel(&gvs->Moleculetype);

    if (moleculetype)
        gvs->Moleculetype = ajStrNewRef(moleculetype);

    return ajTrue;
}




/* @func ensGvsynonymSetName **************************************************
**
** Set the name member of an Ensembl Genetic Variation Synonym.
**
** @param [u] gvs [EnsPGvsynonym] Ensembl Genetic Variation Synonym
** @param [u] name [AjPStr] Name
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/

AjBool ensGvsynonymSetName(EnsPGvsynonym gvs,
                           AjPStr name)
{
    if (!gvs)
        return ajFalse;

    ajStrDel(&gvs->Name);

    if (name)
        gvs->Name = ajStrNewRef(name);

    return ajTrue;
}




/* @func ensGvsynonymSetSubidentifier *****************************************
**
** Set the sub-identifier member of an Ensembl Genetic Variation Synonym.
**
** @param [u] gvs [EnsPGvsynonym] Ensembl Genetic Variation Synonym
** @param [r] subidentifier [ajuint] Sub-identifier
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/

AjBool ensGvsynonymSetSubidentifier(EnsPGvsynonym gvs,
                                    ajuint subidentifier)
{
    if (!gvs)
        return ajFalse;

    gvs->Subidentifier = subidentifier;

    return ajTrue;
}




/* @section debugging *********************************************************
**
** Functions for reporting of an Ensembl Genetic Variation Synonym object.
**
** @fdata [EnsPGvsynonym]
**
** @nam3rule Trace Report Ensembl Genetic Variation Synonym members to
**                 debug file
**
** @argrule Trace gvs [const EnsPGvsynonym] Ensembl Genetic Variation Synonym
** @argrule Trace level [ajuint] Indentation level
**
** @valrule * [AjBool] ajTrue upon success, ajFalse otherwise
**
** @fcategory misc
******************************************************************************/




/* @func ensGvsynonymTrace ****************************************************
**
** Trace an Ensembl Genetic Variation Synonym.
**
** @param [r] gvs [const EnsPGvsynonym] Ensembl Genetic Variation Synonym
** @param [r] level [ajuint] Indentation level
**
** @return [AjBool] ajTrue upon success, ajFalse otherwise
**
** @release 6.4.0
** @@
******************************************************************************/

AjBool ensGvsynonymTrace(const EnsPGvsynonym gvs, ajuint level)
{
    AjPStr indent = NULL;

    if (!gvs)
        return ajFalse;

    indent = ajStrNew();

    ajStrAppendCountK(&indent, ' ', level * 2);

    ajDebug("%SensGvsynonymTrace %p\n"
            "%S  Use %u\n"
            "%S  Identifier %u\n"
            "%S  Adaptor %p\n"
            "%S  Gvsource %p\n"
            "%S  Name '%S'\n"
            "%S  Moleculetype '%S'\n"
            "%S  Gvvariationidentifier %u\n"
            "%S  Subidentifier %u\n",
            indent, gvs,
            indent, gvs->Use,
            indent, gvs->Identifier,
            indent, gvs->Adaptor,
            indent, gvs->Gvsource,
            indent, gvs->Name,
            indent, gvs->Moleculetype,
            indent, gvs->Gvvariationidentifier,
            indent, gvs->Subidentifier);

    ensGvsourceTrace(gvs->Gvsource, level  + 1);

    ajStrDel(&indent);

    return ajTrue;
}




/* @section calculate *********************************************************
**
** Functions for calculating information from an
** Ensembl Genetic Variation Synonym object.
**
** @fdata [EnsPGvsynonym]
**
** @nam3rule Calculate Calculate Ensembl Genetic Variation Synonym information
** @nam4rule Memsize Calculate the memory size in bytes
**
** @argrule * gvs [const EnsPGvsynonym] Ensembl Genetic Variation Synonym
**
** @valrule Memsize [size_t] Memory size in bytes or 0
**
** @fcategory misc
******************************************************************************/




/* @func ensGvsynonymCalculateMemsize *****************************************
**
** Get the memory size in bytes of an Ensembl Genetic Variation Synonym.
**
** @param [r] gvs [const EnsPGvsynonym] Ensembl Genetic Variation Synonym
**
** @return [size_t] Memory size in bytes or 0
**
** @release 6.4.0
** @@
******************************************************************************/

size_t ensGvsynonymCalculateMemsize(const EnsPGvsynonym gvs)
{
    size_t size = 0;

    if (!gvs)
        return 0;

    size += sizeof (EnsOGvsynonym);

    size += ensGvsourceCalculateMemsize(gvs->Gvsource);

    if (gvs->Name)
    {
        size += sizeof (AjOStr);

        size += ajStrGetRes(gvs->Name);
    }

    if (gvs->Moleculetype)
    {
        size += sizeof (AjOStr);

        size += ajStrGetRes(gvs->Moleculetype);
    }

    return size;
}