]> git.donarmstrong.com Git - using_make_for_science.git/commitdiff
fix bam/sam and fastq/fastq.gz mixup in presentation
authorDon Armstrong <don@donarmstrong.com>
Thu, 6 Aug 2015 20:28:12 +0000 (13:28 -0700)
committerDon Armstrong <don@donarmstrong.com>
Thu, 6 Aug 2015 20:28:12 +0000 (13:28 -0700)
using_make_for_science.Rnw

index 12ce5e7f07bf7c07053283d722fc0a1e2b9733b5..4513c1101655e344357f5326fd3cb35eb6388caf 100644 (file)
@@ -214,7 +214,7 @@ TARGETS: PREREQUISITES
 
 \begin{frame}[fragile]{Some Functions}
   \begin{itemize}
 
 \begin{frame}[fragile]{Some Functions}
   \begin{itemize}
-  \item \mintinline{make}{$(patsubst %.bam,%.sam,foo.sam bar.sam)} %$
+  \item \mintinline{make}{$(patsubst %.sam,%.bam,foo.sam bar.sam)} %$
       -- returns foo.bam bar.bam.
   \item \mintinline{make}{$(filter-out %.bam,foo.sam bar.bam)} %$
       -- returns foo.sam
       -- returns foo.bam bar.bam.
   \item \mintinline{make}{$(filter-out %.bam,foo.sam bar.bam)} %$
       -- returns foo.sam
@@ -271,7 +271,7 @@ clean:
 
 \begin{frame}[fragile]{Special Targets}
 \begin{minted}[showtabs]{make}
 
 \begin{frame}[fragile]{Special Targets}
 \begin{minted}[showtabs]{make}
-%.fasta.gz: %.fasta
+%.fasta: %.fasta.gz
        gzip -dc $< > $@
 
 %.bam: %.sam
        gzip -dc $< > $@
 
 %.bam: %.sam