├── .gitignore ├── Future Module - Adding to Plots └── FilePlotter2.py ├── LICENSE ├── Module0PlottingSpectra ├── FilePlotter.py ├── Lesson 0 Notes.md ├── SPECTRUM - MS.txt ├── scratch0.py └── test.py ├── Module1CalculatingMasses ├── __init__.py ├── calc_masses.py ├── calc_masses_chem.py ├── homework1.py └── scratch1.py ├── Module2LargerDatabases ├── Sample H CID Matches.xlsx ├── __init__.py ├── calc_masses_fasta.py ├── human.fasta ├── results_to_mrm.py └── sketch.py ├── README.md └── __init__.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.png 3 | *_key.py -------------------------------------------------------------------------------- /Future Module - Adding to Plots/FilePlotter2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Future Module - Adding to Plots/FilePlotter2.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/LICENSE -------------------------------------------------------------------------------- /Module0PlottingSpectra/FilePlotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Module0PlottingSpectra/FilePlotter.py -------------------------------------------------------------------------------- /Module0PlottingSpectra/Lesson 0 Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Module0PlottingSpectra/Lesson 0 Notes.md -------------------------------------------------------------------------------- /Module0PlottingSpectra/SPECTRUM - MS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Module0PlottingSpectra/SPECTRUM - MS.txt -------------------------------------------------------------------------------- /Module0PlottingSpectra/scratch0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Module0PlottingSpectra/scratch0.py -------------------------------------------------------------------------------- /Module0PlottingSpectra/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Module0PlottingSpectra/test.py -------------------------------------------------------------------------------- /Module1CalculatingMasses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module1CalculatingMasses/calc_masses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Module1CalculatingMasses/calc_masses.py -------------------------------------------------------------------------------- /Module1CalculatingMasses/calc_masses_chem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Module1CalculatingMasses/calc_masses_chem.py -------------------------------------------------------------------------------- /Module1CalculatingMasses/homework1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Module1CalculatingMasses/homework1.py -------------------------------------------------------------------------------- /Module1CalculatingMasses/scratch1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Module1CalculatingMasses/scratch1.py -------------------------------------------------------------------------------- /Module2LargerDatabases/Sample H CID Matches.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Module2LargerDatabases/Sample H CID Matches.xlsx -------------------------------------------------------------------------------- /Module2LargerDatabases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module2LargerDatabases/calc_masses_fasta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Module2LargerDatabases/calc_masses_fasta.py -------------------------------------------------------------------------------- /Module2LargerDatabases/human.fasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Module2LargerDatabases/human.fasta -------------------------------------------------------------------------------- /Module2LargerDatabases/results_to_mrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Module2LargerDatabases/results_to_mrm.py -------------------------------------------------------------------------------- /Module2LargerDatabases/sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/Module2LargerDatabases/sketch.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmarty/MassSpecCodingClub/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------