lenplot {sRNAGenetic}R Documentation

Generate the sRNA length distribution plot

Description

Generate the sRNA length distribution plot

Usage

lenplot(file_dataframe, width = 0.6, size = 12)

Arguments

file_dataframe

A dataframe. The output result after running "srnapredata".

width

A numeric. The width of the output bar plot, and default is 0.6.

size

A numeric. The size of text in the outpot plot, and default is 12.

Value

The sRNA length distribution plot

Examples

##F1
F1_sRNA <- srnapredata(srnaseq_dataframe = F1_sRNA_seq, group = "F1")
##P1
P1_sRNA <- srnapredata(srnaseq_dataframe = P1_sRNA_seq, group = "P1")
##P2
P2_sRNA <- srnapredata(srnaseq_dataframe = P2_sRNA_seq, group = "P2")
##integrate all sRNA data from P1, P2, and F1
sRNA_data <- rbind(F1_sRNA,P1_sRNA,P2_sRNA)
##plot
lenplot(file_dataframe = sRNA_data)

[Package sRNAGenetic version 0.1.0 Index]