Skip to main content

Taking the easy way

The simplest way to make a 'package' is to just put our function into a single file, like this:

Copy and paste the function and paste it into a new file, called gff.R, in the current directory. (For good measure, paste the test function as well.)

To load this into your R session, you can use the source() function:

source( 'gff.R' )
X = read_gff( "gencode.v41.annotation.head.gff" )

For python this is it!

However, if you're working in R, this isn't a fully-fledged package yet. For that, go here.