This function create the marker descriptor object containing all needed marker informations.
这个函数创建标记描述对象,其中包含所有需要的标记信息。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function loads the markers contained within the matrix passed as argument and creates for all chromosomes an ordered vector containing the position of each marker.These vectors are loaded within a list.
这个函数加载包含在矩阵作为参数传递和创建装载列表内所有染色体的有序向量,包含每个marker.These向量的位置的标记。
用法----------Usage----------
load_markers(marker_matrix)
参数----------Arguments----------
参数:marker_matrix
contains the marker descriptions as a matrix with the following structure:<br> Probe Name - Chromosome - Start - End<br> Note that the End position column is optional (in this case start and the end positions coincide). The sex chromosomes X and Y must be indicated with 23 and 24 respectively.
包含具有以下结构的矩阵标记描述:参考探测器名称 - 染色体 - 开始 - 结束<br>注意的结束位置列是可选的(在这种情况下,开始和结束位置重合)。性染色体X和Y必须指出,23日和24日分别。
值----------Value----------
This function returns a list having the following structure:
这个函数返回一个列表,具有以下结构:
参数:chromosome_marker_list[[i]]
is a matrix of dimension 2xN (N is the number of observed probes for the i-th chromosome) the first and the second row contains the start and the end position of each marker of the i-th chromosome respectively.<br><br>
矩阵一维2XN的(N为第i个染色体的观察探针的数量)的第一和第二行分别包含的第i个染色体的每个标记的开始和结束位置。参考<BR >
An example of the data produced by this function can be found in synthMarkers.
此函数产生的数据的一个例子,可以发现在synthMarkers。
作者(S)----------Author(s)----------
Sandro Morganella et al.
Maintainer: S. Morganella <morganellaalx@gmail.com>
举例----------Examples----------
# Load the matrix containing the informations about the markers[包含有关标记的信息加载矩阵]
data(synthMarkers_Matrix)
# Use the function load_markers to obtain the marker descriptor data object[使用的的功能load_markers获得的标记描述数据对象]
marks <- load_markers(synthMarkers_Matrix)