Skip to content
View jdzm's full-sized avatar
  • SUPSI
  • Lugano

Block or report jdzm

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. extract-gff-attribute extract-gff-attribute
    1
    extract_gff_attribute <- function(gtf_attributes, att_of_interest){
    2
      # takes in the 9th column from a GTF with the attributes and returns a vector 
    3
      # with the selected attibute. The attribute name must match exactly.
    4
      att_flat <- unlist(gtf_attributes)
    5
      att_of_interest <- paste0(att_of_interest,"=")