File: copy_sequence.c

package info (click to toggle)
garlic 1.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 4,516 kB
  • sloc: ansic: 52,465; makefile: 2,254
file content (82 lines) | stat: -rw-r--r-- 1,947 bytes parent folder | download | duplicates (5)
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
/* Copyright (C) 2000-2003 Damir Zucic */

/*=============================================================================

				copy_sequence.c

Purpose:
	Copy sequence from the general purpose buffer to the reference
	buffer.

Input:
	(1) Pointer to RuntimeS structure.

Output:
	(1) Sequence copyed to reference buffer.
	(2) Return value.

Return value:
	(1) The number of residues in both buffers.

========includes:============================================================*/

#include <stdio.h>

#include <string.h>

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>

#include "defines.h"
#include "typedefs.h"

/*======function prototypes:=================================================*/

void		InitHyphob_ (RuntimeS *);

/*======copy sequence to reference buffer:===================================*/

int CopySequence_ (RuntimeS *runtimeSP)
{
int		max_length, i;
size_t		residuesN, residueI;
char		*sourceP, *destP;

/* The maximal residue name length: */
max_length = RESNAMESIZE - 1;

/* Copy the number of residues: */
residuesN = runtimeSP->residuesN;
runtimeSP->reference_residuesN = residuesN;

/* Zero initialize the reference buffer: */
for (i = 0; i < (int) runtimeSP->sequence_buffer_size; i++)
	{
	*(runtimeSP->reference_sequenceP + i) = '\0';
	}

/* Scan the source sequence: */
for (residueI = 0; residueI < residuesN; residueI++)
	{
	/* Copy the residue name: */
	sourceP = runtimeSP->sequenceP + residueI * max_length;
	destP = runtimeSP->reference_sequenceP + residueI * max_length;
	strncpy (destP, sourceP, max_length);

	/* Copy the residue serial number: */
	*(runtimeSP->reference_serialIP + residueI) =
					*(runtimeSP->serialIP + residueI);
	}

/* Initialize the hydrophobicity values: */
InitHyphob_ (runtimeSP);

/* Return the number of residues in both buffers: */
return residuesN;
}

/*===========================================================================*/