mirror of
https://github.com/gladstone-institutes/Bioinformatics-Workshops.git
synced 2025-11-30 09:45:43 -08:00
formatting updates for Nov 2025
This commit is contained in:
parent
739e2c74be
commit
bf48948da3
202 changed files with 17872 additions and 14022 deletions
BIN
docs/Intro_to_Unix/materials/File permissions.png
Normal file
BIN
docs/Intro_to_Unix/materials/File permissions.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 98 KiB |
BIN
docs/Intro_to_Unix/materials/UNIX_filesystem.png
Normal file
BIN
docs/Intro_to_Unix/materials/UNIX_filesystem.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 145 KiB |
11
docs/Intro_to_Unix/materials/example_script.sh
Normal file
11
docs/Intro_to_Unix/materials/example_script.sh
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash
|
||||
|
||||
# This is a comment. Comments are ignored by the shell.
|
||||
|
||||
# $1 is the first argument passed to the script
|
||||
echo "Counting the genes in $1"
|
||||
|
||||
# count the unique genes in the file
|
||||
u_genes=$(gunzip -c $1 | cut -f 1 | sort -u | wc -l)
|
||||
|
||||
echo "There are $u_genes unique genes in $1"
|
||||
BIN
docs/Intro_to_Unix/materials/gladstone_logo_slide.png
Normal file
BIN
docs/Intro_to_Unix/materials/gladstone_logo_slide.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2 MiB |
BIN
docs/Intro_to_Unix/materials/nano.png
Normal file
BIN
docs/Intro_to_Unix/materials/nano.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 282 KiB |
Loading…
Add table
Add a link
Reference in a new issue