You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Function that makes the RSEM reference. Takes the path to the reference genome
#gtf file as its first argument and the path to the reference genome fasta file as
#its second argument
make_ref(){
#Check correct number of arguments were passed
if [ $# -ne 2 ]
then
echo "Incorrect number of arguments supplied. Two arguments should be passed to this function, the first the path to the reference gtf file and the second the path to the reference fasta file."