Mary Anne Laracochea

Vice President of Operations at SmartPass

Mary Anne Laracochea has extensive work experience, having held various roles since 2013. Mary Anne began their career at Excelsior Integrated as a Lead Generator, before moving to SortSmart Solutions as a Virtual Assistant. From 2013 to 2019, they held roles at GetNetSet, LLC as a Wordpress Content Manager, GaggleAMP as an Executive Assistant, and Friends of Puerto Rico and Bliss Fit Foods as an Executive Assistant. In 2018, they worked at Digital Phenix as a Client Support and at Ninjodo as a Client Support and Executive Assistant. Since 2019, they have held roles at Scan Unlimited as a Customer Support Specialist, and at SmartPass as a Director of Customer Success & Operations and Billing & Administrative Coordinator.

#!/usr/bin/env python

# -*- coding: utf-8 -*-

import sys

import os

import re

import argparse

#------------------------------------------------------------------------------

#

#------------------------------------------------------------------------------

def parse_args():

parser = argparse.ArgumentParser(description="")

parser.add_argument("-i", "--input", dest="input_file",

help="Input file", required=True)

parser.add_argument("-o", "--output", dest="output_file",

help="Output file", required=True)

return parser.parse_args()

#------------------------------------------------------------------------------

#

#------------------------------------------------------------------------------

def main():

args = parse_args()

# Open the input file

with open(args.input_file, 'r') as fp_in:

# Open the output file

with open(args.output_file, 'w') as fp_out:

# Read the input file

for line in fp_in:

# Split the line

fields = line.strip().split('\t')

# Extract the fields

chrom = fields[0]

start = fields[1]

end = fields[2]

strand = fields[3]

gene_id = fields[4]

# Generate the output

output = [chrom, start, end, gene_id, '0', strand]

output_str = '\t'.join(output)

# Write the output

fp_out.write(output_str + '\n')

#------------------------------------------------------------------------------

#

#------------------------------------------------------------------------------

if __name__ == '__main__':

main()

Links

Previous companies

Excelsior logo
GaggleAMP logo

Timeline

  • Vice President of Operations

    May 1, 2023 - present

  • Director of Customer Success & Operations

    August, 2022

  • Billing & Administrative Coordinator

    March, 2022

A panel showing how The Org can help with contacting the right person.