Get intersection between term and query for a Specific Term
Source:R/ORA_utils.R
      get_TP_markers_per_Term.RdThis function extracts unique true positive markers for a specified term from the ORA bootstrap result.
Value
A character vector containing the unique true positive markers associated with the specified term.
Examples
if (FALSE) { # \dontrun{
  # Example usage with hypothetical data
  ORA_boot_df <- data.frame(
    Term = c("Term1", "Term2", "Term1"),
    TP_markers = c("Marker1;Marker2", "Marker3;Marker4", "Marker2;Marker5")
  )
  markers <- get_TP_markers_per_Term(ORA_boot_df, "Term1")
  print(markers)
} # }