Bioinformatics Test 3 (Wk 4-10)

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/114

flashcard set

Earn XP

Description and Tags

Linux, Workflows & HPC. Genome Assembly and Assembly Quality. Genome Annotation. Sequencing and Variants. Variant Consequences. Single-Cell Transcriptomics. Protein Bioinformatics.

Last updated 3:35 AM on 9/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

115 Terms

1
New cards

What is Linux?

An operating system widely used for bioinformatics servers and computing.

2
New cards

Why is Linux commonly used in bioinformatics?

It is stable, scalable, open-source and highly scriptable.

3
New cards

What is the command line?

A text-based interface for directly controlling the operating system.

4
New cards

What does ls do?

Lists files and directories

5
New cards

What does ls -a do?

Lists all files, including hidden files

6
New cards

What does cd do?

Changes the current directory

7
New cards

What does pwd do?

Shows the current working directory

8
New cards

What does grep do?

Searches and filters text

9
New cards

What does ssh do?

Connects to a remote computer

10
New cards

What does * mean as a Linux wildcard?

Matches multiple characters/files

11
New cards

What does ? mean as a Linux wildcard?

Matches a single character

12
New cards

What does | do in Linux?

Pipes the output of one command into another

13
New cards

What do wildcards and pipes enable?

Efficient processing across many files

14
New cards

What is a bioinformatics workflow/pipeline?

A sequence of analysis steps used to process biological data

15
New cards

Why do workflows improve reproducibility?

Steps and settings can be consistently repeated

16
New cards

What are three benefits of modern workflows?

Reproducibility, efficiency and scalability

17
New cards

Name three workflow management systems

Galaxy, Nextflow and Snakemake

18
New cards

What does HPC stand for?

High-Performance Computing

19
New cards

What is HPC used for?

Analysing very large datasets using many CPUs and large memory

20
New cards

What are the main components of an HPC cluster?

Login nodes, compute nodes, scheduler and shared storage

21
New cards

Where should HPC jobs actually run?

Compute nodes, after submission through the scheduler

22
New cards

What is SLURM?

A scheduler used to manage HPC jobs

23
New cards

What is Bash used for?

Command-line scripting and automation

24
New cards

What is Python commonly used for?

Automation, file processing and workflow integration

25
New cards

What is R mainly used for?

Statistical analysis and data visualisation

26
New cards

What does Conda manage?

Software environments and package dependencies

27
New cards

Why are containers useful?

They package software and dependencies to improve reproducibility

28
New cards

What is genome assembly?

Computationally reconstructing a genome from sequencing reads

29
New cards

What is the general assembly progression?

Reads → contigs → scaffolds → chromosomes

30
New cards

What is a sequencing read?

An individual sequence produced by a sequencing experiment

31
New cards

What is a contig?

A contiguous sequence assembled from overlapping reads

32
New cards

What is a scaffold?

Ordered/oriented contigs that may contain gaps

33
New cards

What is a chromosome-level assembly?

An assembly with chromosome-scale sequence continuity

34
New cards

What is de novo assembly?

Assembly performed without using a reference genome

35
New cards

What is resequencing?

Sequencing and analysing a genome against an existing reference

36
New cards

What is shotgun sequencing?

Randomly fragmenting the genome and computationally assembling it

37
New cards

Why are repetitive regions difficult to assemble?

Short reads may not span repeats, causing ambiguous placement

38
New cards

Why are long reads useful for genome assembly?

They can span repetitive regions that challenge short reads

39
New cards

What are tandem repeats?

Repeated sequences occurring next to one another

40
New cards

Give examples of tandem repeats

Satellites, minisatellites and microsatellites

41
New cards

What are interspersed repeats?

Repeated elements distributed throughout the genome

42
New cards

Give examples of interspersed repeats

LINEs, SINEs, LTR elements and DNA transposons

43
New cards

What does N50 measure?

The sequence length where 50% of the assembly is in sequences that long or longer

44
New cards

What does N50 tell you about an assembly?

Its contiguity

45
New cards

What does L50 measure?

The number of contigs/scaffolds needed to represent 50% of the assembly

46
New cards

What is the easiest way to remember N50 vs L50?

N50 = length; L50 = number

47
New cards

What does NG50 use instead of assembly size?

The known/expected genome size

48
New cards

What does BUSCO assess?

Presence and completeness of expected single-copy genes

49
New cards

What does a low BUSCO score potentially indicate?

Missing or fragmented expected genes/regions

50
New cards

What does N50 measure compared with BUSCO?

N50 = contiguity; BUSCO = completeness

51
New cards

What is genome annotation?

Identifying genomic features and assigning biological meaning to DNA

52
New cards

What is structural annotation?

Identifying where genes and other genomic features occur

53
New cards

What is functional annotation?

Assigning biological information such as function and pathways

54
New cards

What is the easiest way to remember structural vs functional annotation?

Structural = WHERE; functional = WHAT it does

55
New cards

Why is eukaryotic gene annotation difficult?

Introns, exons, UTRs, ncRNAs, non-coding DNA and complex transcription

56
New cards

Why are prokaryotic genomes generally easier to annotate?

Their gene structures are generally simpler and lack extensive intron/exon organisation

57
New cards

What are intrinsic (ab initio) gene predictions based on?

Information within the DNA sequence itself

58
New cards

What can intrinsic prediction use?

Codon usage, splice sites, branch sites, polyA signals, TSS and promoters

59
New cards

What are extrinsic/evidence-based predictions based on?

External DNA, RNA, protein similarity and synteny

60
New cards

What is integrated gene prediction?

Combining intrinsic and extrinsic evidence

61
New cards

What is AUGUSTUS used for?

Eukaryotic ab initio gene prediction

62
New cards

What is MAKER2 used for?

Integrating multiple evidence sources into genome annotations

63
New cards

What does RepeatMasker identify?

Repetitive elements

64
New cards

What is GFF3 used for?

Storing genome annotation features and their coordinates

65
New cards

Why shouldn't one gene prediction tool be trusted alone?

Predictions can disagree and contain exon, UTR or gene-calling errors

66
New cards

What does FASTA contain?

Sequence information with a header

67
New cards

What does FASTQ contain that FASTA does not?

Quality scores for each base

68
New cards

What are the four lines of a FASTQ record?

Identifier, sequence, + separator, quality scores

69
New cards

Which FASTQ line contains quality scores?

The fourth line

70
New cards

What does a Phred score represent?

The probability that a base call is incorrect

71
New cards

What does Phred 30 mean?

A 1 in 1000 chance the base call is incorrect

72
New cards

What are the two main ways to improve FASTQ quality?

Trimming and filtering

73
New cards

What does FastQC do?

Assesses sequencing quality without modifying the data

74
New cards

What is the general variant-calling workflow?

FASTQ → QC → mapping → SAM/BAM → variant calling → VCF

75
New cards

What does SAM contain?

Alignment coordinates and sequences of reads mapped to a reference

76
New cards

What is BAM?

The binary form of SAM

77
New cards

What is VCF used for?

Storing called variants and related information

78
New cards

What does QUAL mean in a VCF?

Phred-scaled quality score for the variant call

79
New cards

What are the main VCF fields?

CHROM, POS, ID, REF, ALT, QUAL, FILTER and INFO

80
New cards

What is an SNV?

A single nucleotide variant

81
New cards

What is an indel?

An insertion or deletion

82
New cards

What is a CNV?

A copy-number variant

83
New cards

What is a structural variant?

A larger-scale genomic variation such as a rearrangement

84
New cards

Why is high coverage useful in variant calling?

It increases confidence in distinguishing true variants from errors

85
New cards

What is strand bias?

Variant evidence being disproportionately supported by one sequencing strand

86
New cards

What forward/reverse support is preferable for a real variant?

Evidence from both forward and reverse strands

87
New cards

What is a synonymous variant?

A nucleotide change that does not alter the amino acid

88
New cards

What is a missense variant?

A nucleotide change that alters an amino acid

89
New cards

What is a nonsense variant?

A variant that introduces a stop codon

90
New cards

What do HGVS prefixes g., c. and p. mean?

g. = genomic; c. = coding DNA; p. = protein

91
New cards

What is dbSNP mainly used for?

Small-scale genetic variants

92
New cards

What is dbVar mainly used for?

Structural variants

93
New cards

What is ClinVar mainly used for?

Clinical significance of genetic variants

94
New cards

What is VEP used for?

Predicting variant consequences

95
New cards

What is bulk transcriptomics?

Measuring gene expression from an entire tissue or mixed cell population

96
New cards

What is the main problem with bulk transcriptomics?

Different cell types contribute mixed expression signals

97
New cards

What is single-cell transcriptomics?

Measuring gene expression on a per-cell basis

98
New cards

Why is single-cell transcriptomics useful?

It distinguishes expression patterns between individual cell populations

99
New cards

What evidence can be combined to infer protein function?

Sequence, domains, topology, structure, proteomics and pathways

100
New cards

What is a protein domain?

A larger structural/functional unit that can often fold independently