Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
head gene_counts.tab
Warning
titleBe very careful how you copy and paste from the example below.

Do not copy the > characters in the examples. They are the R prompt to remind you which commands you are running the inside of R!Some commands are spread across multiple lines. The > are missing at the beginning of the lines after the first one in these cases. So:

Code Block

> y <- c(
    1:10
  )
> y

Is the same as

Code Block

> y <- c(1:10)
> y

It's ok to copy across the multiple lines and past into R as long as you get all the way to the closing parenthesis.

The commands for this example are also described in the DESeq vignette (PDF) .

...