lodint                  package:qtl                  R Documentation

_L_O_D _s_u_p_p_o_r_t _i_n_t_e_r_v_a_l

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

     Calculate a LOD support interval for a particular chromosomes.

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

     lodint(results, chr, drop=1.5)

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

 results: Output from 'scanone'.

     chr: A chromosome ID.

    drop: LOD units to drop to form the interval.

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

     An object of class 'scanone', like the input, indicating the
     position with the maximum LOD, and indicating approximate
     endpoints for the LOD support interval.

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

     Karl W Broman, kbroman@jhsph.edu

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

     'scanone'

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

     data(listeria)
     listeria <- subset(listeria,chr=c(5,13))
     listeria <- calc.genoprob(listeria, step=0.5)
     out <- scanone(listeria, model="np")
     lodint(out, 5, 1.5)
     lodint(out, 13, 1.5)

