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
Copy file name to clipboardExpand all lines: episodes/03-basics-factors-dataframes.Rmd
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -187,6 +187,13 @@ a view of the data in a new tab.
187
187
188
188

189
189
190
+
The majority of the columns in the data frame correspond to standard fields found in a
191
+
*Variant Call Format (VCF)* file, while others were added during our data processing. The VCF
192
+
format is a standard format for storing variant calls (also known as Single Nucleotide Polymorphisms or SNPs),
193
+
and you can read more about it, including a description of the fields we have here
194
+
in [the VCF specification](https://samtools.github.io/hts-specs/VCFv4.2.pdf)
195
+
or [on wikipedia](https://en.wikipedia.org/wiki/Variant_Call_Format).
196
+
190
197
We can also quickly query the dimensions of the variable using `dim()`. You'll see that the first number `801` shows the number of rows, then `29` the number of columns
0 commit comments