💻 R, Python, GitHub & Shell

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/14

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:03 PM on 9/17/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

15 Terms

1
New cards
What is R mainly used for in bioinformatics?
Statistical analysis, data visualisation (ggplot2), and Bioconductor packages for genomics.
2
New cards
What is a data frame in R?
A table where columns can be different data types. The main structure for tabular data.
3
New cards
What does the ggplot2 package do?
Creates publication-quality plots using a layered grammar of graphics.
4
New cards
What is Python mainly used for in bioinformatics?
Scripting, data manipulation (pandas), machine learning, and pipeline development.
5
New cards
What is pandas in Python?
A library for data manipulation and analysis. Provides DataFrames.
6
New cards
What is a loop in programming?
A block of code that repeats for a set number of times or until a condition is met.
7
New cards
What is a function in programming?
A reusable block of code that takes inputs and returns an output.
8
New cards
What is GitHub?
A platform for version control and collaboration using Git. Hosts repositories online.
9
New cards
What is a Git commit?
A snapshot of your project at a point in time. Records changes with a message.
10
New cards
What is a Git branch?
A parallel version of the repository. Allows work on features without affecting the main branch.
11
New cards
What is a pull request?
A request to merge changes from one branch into another. Allows review before merging.
12
New cards
What is a README file?
A markdown file explaining what the project is, how to use it, and how to reproduce results.
13
New cards
What is the shell?
A command-line interface to interact with the operating system. Used for running scripts, navigating files, and automating tasks.
14
New cards
What is VS Code?
A code editor with terminal, extensions, and Git integration. Used for R, Python, and shell scripting.
15
New cards
What is a reproducible workflow?
A workflow where others can run your code and get the same results. Requires documented code, version control, and fixed dependencie