Skip to content
Snippets Groups Projects
Commit 27d31ee7 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Add license info to python scripts

parent c9c308a8
Branches
Tags
2 merge requests!95Update rna-seq.nf,!92Resolve "Server changing... need to change .insert calls"
#!/usr/bin/env python3
#delete_entry.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse import argparse
from deriva.core import ErmrestCatalog, get_credential, BaseCLI from deriva.core import ErmrestCatalog, get_credential, BaseCLI
import sys import sys
...@@ -34,4 +42,4 @@ if __name__ == '__main__': ...@@ -34,4 +42,4 @@ if __name__ == '__main__':
cli.remove_options(["--config-file"]) cli.remove_options(["--config-file"])
host = args.host host = args.host
credentials = {"cookie": args.cookie} credentials = {"cookie": args.cookie}
main(host, 2, credentials) main(host, 2, credentials)
\ No newline at end of file
#!/usr/bin/env python3 #!/usr/bin/env python3
#extract_ref_data.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse import argparse
import pandas as pd import pandas as pd
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
#generate_references.py #generate_references.py
#* #*
#* -------------------------------------------------------------------------- #* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/BICF/Astrocyte/cellranger_count/blob/develop/LICENSE) #* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* -------------------------------------------------------------------------- #* --------------------------------------------------------------------------
#* #*
......
#!/usr/bin/env python3 #!/usr/bin/env python3
# -*- coding: utf-8 -*- #generate_versions.py
#*
# #* --------------------------------------------------------------------------
# * -------------------------------------------------------------------------- #* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
# * Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/master/LICENSE) #* --------------------------------------------------------------------------
# * -------------------------------------------------------------------------- #*
#
'''Make YAML of software versions.''' '''Make YAML of software versions.'''
......
#!/usr/bin/env python3 #!/usr/bin/env python3
#parse_meta.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse import argparse
import pandas as pd import pandas as pd
......
#!/usr/bin/env python3 #!/usr/bin/env python3
#tin_hist.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse import argparse
import pandas as pd import pandas as pd
......
#!/usr/bin/env python3
#upload_execution_run.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse import argparse
from deriva.core import ErmrestCatalog, get_credential, BaseCLI from deriva.core import ErmrestCatalog, get_credential, BaseCLI
import sys import sys
...@@ -58,4 +66,4 @@ if __name__ == '__main__': ...@@ -58,4 +66,4 @@ if __name__ == '__main__':
cli.remove_options(["--config-file"]) cli.remove_options(["--config-file"])
host = args.host host = args.host
credentials = {"cookie": args.cookie} credentials = {"cookie": args.cookie}
main(host, 2, credentials) main(host, 2, credentials)
\ No newline at end of file
#!/usr/bin/env python3
#upload_input_bag.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse import argparse
from deriva.core import ErmrestCatalog, get_credential, BaseCLI from deriva.core import ErmrestCatalog, get_credential, BaseCLI
import sys import sys
...@@ -43,4 +51,4 @@ if __name__ == '__main__': ...@@ -43,4 +51,4 @@ if __name__ == '__main__':
cli.remove_options(["--config-file"]) cli.remove_options(["--config-file"])
host = args.host host = args.host
credential = {"cookie": args.cookie} credential = {"cookie": args.cookie}
main(host, 2, credential) main(host, 2, credential)
\ No newline at end of file
#!/usr/bin/env python3
#upload_output_bag.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse import argparse
from deriva.core import ErmrestCatalog, get_credential, BaseCLI from deriva.core import ErmrestCatalog, get_credential, BaseCLI
import sys import sys
...@@ -54,4 +62,4 @@ if __name__ == '__main__': ...@@ -54,4 +62,4 @@ if __name__ == '__main__':
cli.remove_options(["--config-file"]) cli.remove_options(["--config-file"])
host = args.host host = args.host
credential = {"cookie": args.cookie} credential = {"cookie": args.cookie}
main(host, 2, credential) main(host, 2, credential)
\ No newline at end of file
#!/usr/bin/env python3
#upload_qc.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import argparse import argparse
from deriva.core import ErmrestCatalog, get_credential, BaseCLI from deriva.core import ErmrestCatalog, get_credential, BaseCLI
import sys import sys
...@@ -72,4 +80,4 @@ if __name__ == '__main__': ...@@ -72,4 +80,4 @@ if __name__ == '__main__':
cli.remove_options(["--config-file"]) cli.remove_options(["--config-file"])
host = args.host host = args.host
credentials = {"cookie": args.cookie} credentials = {"cookie": args.cookie}
main(host, 2, credentials) main(host, 2, credentials)
\ No newline at end of file
#!/usr/bin/env python3 #!/usr/bin/env python3
#utils.py
#*
#* --------------------------------------------------------------------------
#* Licensed under MIT (https://git.biohpc.swmed.edu/gudmap_rbk/rna-seq/-/blob/14a1c222e53f59391d96a2a2e1fd4995474c0d15/LICENSE)
#* --------------------------------------------------------------------------
#*
import shlex import shlex
import logging import logging
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment