Hi Bo,
Here's the command:
rsem-calculate-expression --time -p 8 --no-bam-output --paired-end \
<(gunzip -c $left_reads) <(gunzip -c $right_reads) ~/opt/rsem_references/mm9 $1
this line was in a loop in a bash script that was crawling through my paired read folders (each folder has a pair of files). it passed the left and right read file names as $left_reads and $right_reads and the output name was passed as $1. i didn't want to have to gunzip a copy of my reads so i passed them into the call as you see there. that didn't seem to cause any trouble for bowtie and i've done it like that in the past. i built the mm9 reference exactly as outlined in the documentation on the RSEM site. mine was based on the UCSC known gene database.
is it possible that although the compilation completed something may have not been built and i'm running a handicapped version? i'll try compiling it again and see if i catch any warnings.
i'm off to sleep for now. i plan to mess around with this a lot more in this next week. i'd like to start using RSEM as an alternative to cufflinks for isoform level expression as i've had many issues with cufflinks' quantification in the past. or, i should say, with every version of it since 2009.
shawn