When a university lab produces software — a data-analysis pipeline, a simulation package, a laboratory instrument driver, a modeling toolkit — the technology transfer office (TTO) faces a decision that looks nothing like a typical invention-disclosure-to-patent workflow. Software is protected primarily by copyright, not patent, it usually has near-zero marginal distribution cost, and its commercial and academic value often depends more on adoption than on exclusivity. That combination is why open-source release is a routine, first-class disposition option for research software in a way it almost never is for a patentable invention. This guide covers how TTOs evaluate open-source release against traditional licensing, what the major OSI-approved license families actually do, how dual licensing works as a middle path, and how sponsor/funder rights and Bayh-Dole obligations interact with all of it.
Open source vs. traditional commercialization: the actual decision
“Open-source vs. licensed” is not really a binary choice between giving software away and monetizing it — it is a question of which commercialization mechanism fits the software’s actual value driver. TTOs generally work through a few questions before recommending a disposition:
- Does the value sit in the code itself, or in something built around it? If the software’s value is primarily as infrastructure — a file format library, a statistical package, a workflow engine — wide adoption usually creates more downstream value (citations, follow-on funding, industry partnerships, faculty reputation) than a narrow exclusive license would. If the value sits in a specific, differentiated implementation that a company would pay to control exclusively (e.g., a proprietary algorithm embedded in a diagnostic device), traditional licensing is more likely to produce real revenue.
- Is there a viable exclusive licensee at all? Most university software never attracts a company willing to pay for exclusivity — AUTM’s own membership discussions have noted that open-source software historically receives less attention from tech transfer offices than patentable inventions, in part because it doesn’t fit the licensing-revenue metrics TTOs are often measured against, even though release under an open license is itself a legitimate, countable form of technology transfer and public benefit.
- Does open release increase the software’s real-world impact and the institution’s reputation, funder mission-alignment, and future research-collaboration pipeline? Federal funders increasingly favor and, in some program areas, require open release of research software (see the funder-rights section below) — a factor that shifts the calculus for federally funded projects specifically.
- Is dual licensing viable? If a commercial partner exists but the broader research community also benefits from open access, a dual-license structure (below) can capture both.
None of this is mutually exclusive with copyright protection: releasing software under an OSI-approved open-source license is still a licensing transaction — the university (or the inventor, depending on institutional IP policy) retains copyright ownership and grants rights to the public under specific, enforceable terms. “Open source” describes the terms of the license, not an absence of one.
What makes a license “open source”: the OSI framework
The Open Source Definition, maintained by the Open Source Initiative (OSI), sets ten criteria a license must meet before the “open source” label legitimately applies — including free redistribution, mandatory access to source code, the right to create and distribute derivative works, and no discrimination against fields of endeavor or specific persons/groups. A license that restricts commercial use, or that only allows source access without redistribution rights, is not an OSI-approved open-source license even if it is sometimes informally described as “open.” This distinction matters in a tech-transfer context specifically because some “source-available” licenses used by commercial software vendors (restricting competing commercial use, for example) are deliberately not OSI-approved — TTOs evaluating a license need to check it against the OSI’s approved-license list rather than assume a license is open source because it is publicly readable.
The three license families a TTO will encounter most often
Nearly every open-source licensing decision a TTO makes maps onto three families of OSI-approved license, distinguished by how much they restrict what a downstream user or company can do with the code.
Permissive licenses: MIT and Apache License 2.0
The MIT License and the Apache License 2.0 are both “permissive” licenses: they allow essentially unrestricted use, modification, and redistribution — including in proprietary, closed-source commercial products — with minimal conditions (typically just retaining the copyright notice and license text). For commercialization purposes:
- MIT is short, has no patent clause, and is widely used for smaller libraries and utilities. Because it says nothing about patents, a company incorporating MIT-licensed code gets no explicit patent license from contributors — a real gap if the software embodies a patentable method the university has also filed on.
- Apache 2.0 includes an explicit patent grant: contributors license any patent claims they hold that are necessarily infringed by their contribution, to anyone who uses the code. It also includes a patent-litigation retaliation clause — if a user sues any party for patent infringement over the licensed work, that user’s patent license under Apache 2.0 terminates. For a university releasing software that may embody patentable subject matter (even if unpatented, or patented separately), Apache 2.0’s explicit patent grant is often the more defensible permissive choice, because it makes clear what patent rights are (and are not) being conveyed alongside the code.
Permissive licensing maximizes adoption — including adoption by commercial competitors who owe the university nothing in return beyond attribution. That tradeoff is usually acceptable when the goal is ecosystem-building, citation/reputation value, or funder compliance, and less acceptable when the university is simultaneously trying to negotiate an exclusive commercial license around the same code.
Copyleft licenses: the GPL family
The GNU General Public License (GPL), maintained by the Free Software Foundation, is the best-known “copyleft” license. Copyleft uses copyright to guarantee, rather than restrict, downstream freedoms: per the FSF’s own GPL FAQ, if a modified or combined version of GPL-licensed code is distributed, it must be distributed under the GPL, preserving the same rights for the next recipient. Internal, non-distributed use (including running modified code as an internal service) does not trigger this obligation under GPLv2/GPLv3 — a distinction that matters for how “viral” the license actually is in practice. GPL has two practically important variants for research software:
- Strong copyleft (GPL, AGPL) — the copyleft obligation extends to the whole combined/derivative work when distributed. The AGPL (Affero GPL) closes the “SaaS loophole” in ordinary GPL by extending the distribution trigger to networked use — a company can violate AGPL just by running a modified version as a hosted service, without ever distributing a binary.
- Weak copyleft (LGPL, MPL) — the copyleft obligation applies only to the licensed component/file itself, not to a larger proprietary program that merely links to or calls it, making these more commercially palatable than GPL/AGPL while still requiring that the licensed component’s own source stay open.
For a TTO, GPL-family licensing is the right fit when the institutional goal is explicitly to prevent a company from taking university-developed code proprietary without giving anything back — but it is a real constraint on traditional commercialization: a company that wants to build a closed, proprietary product on top of GPL code generally cannot, without either open-sourcing its own additions or negotiating a separate, non-GPL license directly from the copyright holder (see dual licensing, below).
License compatibility, briefly
License choice also affects what other open-source code the released software can incorporate or be incorporated into. MIT-licensed code can generally be integrated into GPLv2 or GPLv3 projects. Apache 2.0 is compatible with GPLv3 (the FSF added explicit compatibility language when drafting GPLv3) but is not compatible with GPLv2, because GPLv2 predates and does not accommodate Apache 2.0’s patent-termination clause. A TTO advising a research group building on existing open-source dependencies should confirm license compatibility before the group is deep into development, not after — an incompatible dependency discovered late can force a costly re-implementation or block release entirely.
Dual licensing: capturing both open adoption and commercial revenue
Dual licensing is a structure, not a license type: the copyright holder — which, for university-developed software, is normally the institution under most faculty IP-assignment policies — offers the same codebase under two (or more) different licenses simultaneously. The FSF’s own GPL FAQ confirms this is a legitimate, common practice: “the copyright holder for a program can release it under several different licenses in parallel. One of them may be the GNU GPL.” In practice this usually looks like:
- The software is released publicly under a copyleft license (commonly GPL or AGPL), so the academic/open-source community can use, study, and build on it freely, subject to the copyleft obligation.
- A commercial entity that wants to embed the code in a closed, proprietary product — without triggering the copyleft “give-back” obligation — pays the university (typically through the TTO) for a separate, non-copyleft commercial license to the same code.
This works cleanly only when the university holds clear, unencumbered copyright to the whole codebase being dual-licensed — a live risk if the software has accepted external contributions from non-university contributors without a contributor license agreement (CLA) or copyright assignment, since the university cannot re-license someone else’s copyrighted contribution under different terms without their consent. A TTO considering dual licensing for actively co-developed research software should confirm the contribution/CLA posture before committing to the model, not after a commercial prospect is already at the table.
Sponsor, funder, and Bayh-Dole interactions
Software developed with federal funding sits at the intersection of two different federal regimes, and TTOs need to keep them separate rather than treating “Bayh-Dole” as a catch-all for federal rights in university-developed software:
- Bayh-Dole (35 U.S.C. §§ 200–212) governs patentable “subject inventions.” Most software is protected by copyright rather than patent, so the core Bayh-Dole title-election and march-in machinery generally does not apply to it directly, unless the software embodies or is claimed within a separately patented invention (e.g., a patented algorithm or method also implemented in the released code) — in which case the patent-side Bayh-Dole obligations (invention disclosure, election of title, government license, march-in rights) attach to that patent claim regardless of how the accompanying code is licensed.
- Copyright and data rights in federally funded software are governed separately, primarily by 2 CFR § 200.315 (“Intangible property”) under the Uniform Guidance. The recipient institution may copyright software developed under a federal award, but the funding agency automatically reserves a royalty-free, nonexclusive, and irrevocable right to reproduce, publish, or otherwise use the work for federal purposes, and to authorize others to do so on the government’s behalf. Critically, 200.315 does not itself require the recipient to release the software under an open-source license to the general public — it reserves rights for the government’s own use, which is a narrower obligation than public open-sourcing.
- Individual funder policies can go further than the baseline regulatory floor. Some federal program solicitations and agency public-access policies specifically encourage or require open release of research software as a condition of the award (distinct from, and in addition to, the 200.315 government-use license) — the exact requirement is set by the specific funding opportunity announcement or agency policy, not by a single government-wide rule, so a TTO should check the award terms and the applicable agency’s data/software-sharing policy directly rather than assume a uniform federal standard.
- Sponsored-research agreements with industry sponsors frequently negotiate open-source rights explicitly — a corporate sponsor funding a specific deliverable may require either that the resulting software NOT be open-sourced (to preserve exclusivity it is paying for) or, conversely, may itself want open release for ecosystem reasons (e.g., a sponsor building a platform business around community adoption). Either way, the sponsored-research agreement, not the default institutional IP policy, controls — TTOs should confirm open-source disposition rights are addressed explicitly in the agreement at negotiation, not assumed by default afterward.
The practical takeaway: a Bayh-Dole election-of-title analysis and an open-source licensing decision are two different, only loosely coupled questions for software. A TTO should run the patent-side Bayh-Dole process only where a genuine patentable invention exists (see CASRAI’s guide on patent novelty and invention-disclosure timing), and separately confirm copyright ownership, any 2 CFR 200.315 government-use reservation, and any sponsor-specific open-source terms before finalizing the license under which the software is actually released.
A practical evaluation checklist for TTOs
- Confirm who owns copyright in the software — the institution, under most faculty/staff IP-assignment policies, but verify against the specific institutional policy and any external contributor agreements.
- Identify whether any patentable invention is embodied in or claimed alongside the code; if so, run the Bayh-Dole invention-disclosure and election-of-title process for that invention separately from the software-release decision.
- Check the award/sponsor terms: does a federal funding opportunity, agency public-access policy, or sponsored-research agreement impose (or prohibit) an open-source release requirement, beyond the baseline 2 CFR 200.315 government-use license?
- Assess commercial demand: is there a credible licensee for an exclusive or non-exclusive commercial license, or is broad adoption the more realistic value driver?
- If releasing openly, choose a license family deliberately — permissive (MIT/Apache 2.0) to maximize adoption and compatibility, copyleft (GPL/AGPL) to require reciprocity from downstream commercial users, or weak copyleft (LGPL/MPL) as a middle ground for linkable components.
- If commercial interest and open-community interest both exist, evaluate dual licensing — but confirm the university holds clean, unencumbered copyright across the whole codebase (contributor agreements/CLAs in place) before committing to it.
- Register the chosen license clearly in the repository (a top-level
LICENSEfile, plus an SPDX license identifier) so downstream users, auditors, and future TTO staff can determine the terms without contacting the office.
Frequently asked questions
Does open-sourcing university software forfeit patent rights?
Public disclosure of source code can start the same novelty clock as any other public disclosure under 35 U.S.C. § 102 — releasing code publicly before a patent application is filed can create prior art against a later patent claim on any patentable method the code embodies, subject to the AIA’s one-year inventor grace period in the U.S. (and no equivalent grace period in most foreign jurisdictions). A TTO should complete the patentability assessment and, where a patent is being pursued, file (or at minimum secure a provisional filing) before public code release, not after.
Can a university keep some modules proprietary while open-sourcing others?
Yes — this is common where a codebase has a general-purpose “core” with clear reuse value and specialized modules with concentrated commercial value. The core can be released under a permissive or copyleft license while commercially sensitive modules are withheld and licensed separately (or kept as trade secret), provided the architecture genuinely separates them and the open release doesn’t functionally disclose the withheld component.
Who decides the license — the inventor, the TTO, or university counsel?
Practice varies by institution, but the TTO typically leads the commercialization-vs-open-source assessment and coordinates with the inventor(s) on preference and with university counsel/legal counsel on compatibility with the institution’s IP policy, any sponsor obligations, and any embedded third-party open-source dependencies with their own license terms.
Does releasing software under an open-source license mean giving up copyright?
No. The copyright holder (typically the university) retains ownership; the license is a grant of specific rights to users under specific conditions, not a transfer of ownership. This is also what makes dual licensing possible — the copyright holder can grant different terms to different licensees because it never gave up the underlying copyright.
This guide covers general principles and cites the underlying federal regulations and license texts directly; it is not legal advice, and specific licensing, sponsored-research, and patent decisions should be reviewed with institutional counsel and, where a patentable invention may be involved, patent counsel.







