Nothing
txUnique <- function(GTF_Annotation_File, Feature_Type = "exon", Gene_ID_Attribute = "gene_id", Transcript_ID_Attribute = "transcript_id"){
.check_string_param(Feature_Type, "Feature_Type")
.check_string_param(Gene_ID_Attribute,"Gene_ID_Attribute")
.check_string_param(Transcript_ID_Attribute,"Transcript_ID_Attribute")
GTF_Annotation_File <- .check_and_NormPath(GTF_Annotation_File, mustWork=T, opt="GTF_Annotation_File")
fout <- file.path(".",paste(".Rsubread_txUnique_pid",Sys.getpid(),sep=""))
opt <- paste("-a",GTF_Annotation_File,sep=.R_param_splitor)
opt <- paste(opt,"-o",fout,sep=.R_param_splitor)
opt <- paste(opt,"-g",Gene_ID_Attribute,sep=.R_param_splitor)
opt <- paste(opt,"-t",Transcript_ID_Attribute,sep=.R_param_splitor)
cmd <- paste(opt,"-f",Feature_Type,sep=.R_param_splitor)
n <- length(unlist(strsplit(cmd,.R_param_splitor)))
C_args <- .C("R_txUnique_wrapper",as.integer(n),as.character(cmd),PACKAGE="Rsubread")
if(file.exists(fout)){
z <- read.delim(fout)
z <- z[ order(z[,'Gene_ID'], z[,'Transcript_ID']) ,]
file.remove(fout)
z
}else{
print("No output was generated.")
NA
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.