getDependings           package:reposTools           R Documentation

_A _f_u_n_c_t_i_o_n _t_o _r_e_t_r_i_e_v_e _w_h_i_c_h _p_a_c_k_a_g_e_s _d_e_p_e_n_d _o_n _w_h_i_c_h

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

     This function is used to list which packages are depending on
     other packages within a CRAN style repository.

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

     getDependings(repository, depLevel = c("Depends", "Suggests"), method="auto")

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

repository: The URL of a 'CRAN' style repository

depLevel: Which dependency level to be using

  method: Download method to use.  Same as in 'download.file'.

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

     A list with an element for every package in the repository.  If a
     particular package is not depended on by anything, then the value
     of that element will be NULL, otherwise a character vector of
     every package depending on it will be present.

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

     Jeff Gentry

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

     'CRAN.packages'

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

     z <- getDependings(contrib.url(getOption("BIOC")))

