readBpmap             package:affxparser             R Documentation

_P_a_r_s_e_s _a _B_p_m_a_p _f_i_l_e

_D_e_s_c_r_i_p_t_i_o_n:

     Parses (parts of) a Bpmap (binary probe mapping) file from
     Affymetrix.

_U_s_a_g_e:

     readBpmap(filename, seqIndices = NULL, readProbeSeq = TRUE, readSeqInfo
     = TRUE, readPMXY = TRUE, readMMXY = TRUE, readStartPos = TRUE,
     readCenterPos = FALSE, readStrand = TRUE, readMatchScore = FALSE,
     readProbeLength = FALSE, verbose = 0)

     readBpmapHeader(filename)

     readBpmapSeqinfo(filename, seqIndices = NULL, verbose = 0)

_A_r_g_u_m_e_n_t_s:

filename: The filename as a character.

seqIndices: A vector of integers, detailing the indices of the
          sequences being read. If 'NULL', the entire file is being
          read.

readProbeSeq: 

readSeqInfo: Do we read the sequence information (a list containing
          information such as sequence name, number of hits etc.)

readPMXY: Do we read the (x,y) coordinates of the PM-probes.

readMMXY: Do we read the (x,y) coordinates of the MM-probes (only
          relevant if the file has MM information)

readStartPos: Do we read the start position of the probes.

readCenterPos: Do we return the start position of the probes.

readStrand: Do we return the strand of the hits.

readMatchScore: Do we return the matchscore.

readProbeLength: Doe we return the probelength.

 verbose: How verbose do we want to be.

_D_e_t_a_i_l_s:

     'readBpmap' reads a BPMAP file, which is a binary file containing
     information about a given probe's location in a sequence. Here
     sequence means some kind of reference sequence, typically a
     chromosome or a scaffold. 'readBpmapHeader' reads the header of
     the BPMAP file, and 'readBpmapSeqinfo' reads the sequence info of
     the sequences (so this function is merely a convinience function).

_V_a_l_u_e:

     For 'readBpmap': A list of lists, one list for every sequence
     read. The components of  the sequence lists, depends on the
     argument of the function call. For 'readBpmapheader' a list with
     two components 'version' and 'numSequences'. For
     'readBpmapSeqinfo' a list of lists containing the sequence info.

_N_o_t_e:

_A_u_t_h_o_r(_s):

     Kasper Daniel Hansen <khansen@stat.berkeley.edu>

_R_e_f_e_r_e_n_c_e_s:

_S_e_e _A_l_s_o:

     'tpmap2bpmap' for information on how to write Bpmap files.

_E_x_a_m_p_l_e_s:

